Lines Matching defs:handlers
60 * store registered RX handlers. These handlers are registered by calls to
204 * auth_handlers - Authentication message handlers
209 * num_auth_handlers - Number of handlers in auth_handlers
214 * acct_handlers - Accounting message handlers
219 * num_acct_handlers - Number of handlers in acct_handlers
286 * There can be multiple registered RADIUS message handlers. The handlers will
299 struct radius_rx_handler **handlers, *newh;
303 handlers = &radius->acct_handlers;
306 handlers = &radius->auth_handlers;
310 newh = os_realloc_array(*handlers, *num + 1,
318 *handlers = newh;
1100 struct radius_rx_handler *handlers;
1118 handlers = radius->acct_handlers;
1128 handlers = radius->auth_handlers;
1271 res = handlers[i].handler(msg, req->msg, req->shared_secret,
1273 handlers[i].data);