/** Called by the network thread to pass an event list for the module to use for timer events
*/
-typedef void (*fr_app_event_list_set_t)(void const *instance, fr_event_list_t *el);
+typedef void (*fr_app_event_list_set_t)(void *instance, fr_event_list_t *el);
/** Describes a new application (protocol)
*
* @param[in] instance of the RADIUS UDP I/O path.
* @param[in] el the event list
*/
-static void mod_event_list_set(void const *instance, fr_event_list_t *el)
+static void mod_event_list_set(void *instance, fr_event_list_t *el)
{
- proto_radius_udp_t const *inst;
+ proto_radius_udp_t *inst;
memcpy(&inst, &instance, sizeof(inst)); /* const issues */