Home | History | Annotate | Download | only in radius

Lines Matching defs:handler

54  * struct radius_rx_handler - RADIUS client RX handler
63 * handler - Received RADIUS message handler
65 RadiusRxResult (*handler)(struct radius_msg *msg,
72 * data - Context data for the handler
261 * radius_client_register - Register a RADIUS client RX handler
264 * @handler: Handler for received RADIUS messages
265 * @data: Context pointer for handler callbacks
268 * This function is used to register a handler for processing received RADIUS
269 * authentication and accounting messages. The handler() callback function will
278 RadiusRxResult (*handler)(struct radius_msg *msg,
301 newh[*num].handler = handler;
314 * @cb: Handler for interim accounting errors
315 * @ctx: Context pointer for handler callbacks
317 * This function is used to register a handler for processing failed
901 res = handlers[i].handler(msg, req->msg, req->shared_secret,
915 /* continue with next handler */
925 HOSTAPD_LEVEL_DEBUG, "No RADIUS RX handler found "