Home | History | Annotate | Download | only in radius

Lines Matching defs:handler

60  * struct radius_rx_handler - RADIUS client RX handler
69 * handler - Received RADIUS message handler
71 RadiusRxResult (*handler)(struct radius_msg *msg,
78 * data - Context data for the handler
255 * radius_client_register - Register a RADIUS client RX handler
258 * @handler: Handler for received RADIUS messages
259 * @data: Context pointer for handler callbacks
262 * This function is used to register a handler for processing received RADIUS
263 * authentication and accounting messages. The handler() callback function will
272 RadiusRxResult (*handler)(struct radius_msg *msg,
295 newh[*num].handler = handler;
803 res = handlers[i].handler(msg, req->msg, req->shared_secret,
817 /* continue with next handler */
827 HOSTAPD_LEVEL_DEBUG, "No RADIUS RX handler found "