Home | History | Annotate | Download | only in radius

Lines Matching refs: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
249 * radius_client_register - Register a RADIUS client RX handler
252 * @handler: Handler for received RADIUS messages
253 * @data: Context pointer for handler callbacks
256 * This function is used to register a handler for processing received RADIUS
257 * authentication and accounting messages. The handler() callback function will
266 RadiusRxResult (*handler)(struct radius_msg *msg,
289 newh[*num].handler = handler;
797 res = handlers[i].handler(msg, req->msg, req->shared_secret,
811 /* continue with next handler */
821 HOSTAPD_LEVEL_DEBUG, "No RADIUS RX handler found "