Home | History | Annotate | Download | only in eapol_auth

Lines Matching refs:cb

30 sm->eapol->cb.set_port_authorized(sm->eapol->conf.ctx, sm->sta, 1)
32 sm->eapol->cb.set_port_authorized(sm->eapol->conf.ctx, sm->sta, 0)
38 #define abortAuth() sm->eapol->cb.abort_auth(sm->eapol->conf.ctx, sm->sta)
39 #define txKey() sm->eapol->cb.tx_key(sm->eapol->conf.ctx, sm->sta)
53 if (eapol->cb.logger == NULL)
55 eapol->cb.logger(eapol->conf.ctx, addr, level, txt);
67 if (eapol->cb.logger == NULL)
99 sm->eapol->cb.eapol_send(sm->eapol->conf.ctx, sm->sta,
128 sm->eapol->cb.eapol_send(sm->eapol->conf.ctx, sm->sta,
234 sm->eapol->cb.finished(sm->eapol->conf.ctx, sm->sta, 0,
292 sm->eapol->cb.finished(sm->eapol->conf.ctx, sm->sta, 0,
318 sm->eapol->cb.finished(sm->eapol->conf.ctx, sm->sta, 1,
625 sm->eapol->cb.eapol_event(sm->eapol->conf.ctx, sm->sta,
901 return eapol->cb.sta_entry_alive(eapol->conf.ctx, addr);
971 sm->eapol->cb.aaa_send(
979 sm->eapol->cb.eapol_event(sm->eapol->conf.ctx, sm->sta,
1034 ret = sm->eapol->cb.get_eap_user(sm->eapol->conf.ctx, identity,
1068 return sm->eapol->cb.erp_get_key(sm->eapol->conf.ctx, keyname);
1075 return sm->eapol->cb.erp_add_key(sm->eapol->conf.ctx, erp);
1276 struct eapol_auth_cb *cb)
1294 eapol->cb.eapol_send = cb->eapol_send;
1295 eapol->cb.aaa_send = cb->aaa_send;
1296 eapol->cb.finished = cb->finished;
1297 eapol->cb.get_eap_user = cb->get_eap_user;
1298 eapol->cb.sta_entry_alive = cb->sta_entry_alive;
1299 eapol->cb.logger = cb->logger;
1300 eapol->cbcb->set_port_authorized;
1301 eapol->cb.abort_auth = cb->abort_auth;
1302 eapol->cb.tx_key = cb->tx_key;
1303 eapol->cb.eapol_event = cb->eapol_event;
1304 eapol->cb.erp_get_key = cb->erp_get_key;
1305 eapol->cb.erp_add_key = cb->erp_add_key;