/external/wpa_supplicant_8/src/eapol_supp/ |
eapol_supp_sm.h | 58 struct eapol_sm; 89 void (*cb)(struct eapol_sm *eapol, int success, void *ctx); 257 struct eapol_sm *eapol_sm_init(struct eapol_ctx *ctx); 258 void eapol_sm_deinit(struct eapol_sm *sm); 259 void eapol_sm_step(struct eapol_sm *sm); 260 int eapol_sm_get_status(struct eapol_sm *sm, char *buf, size_t buflen, 262 int eapol_sm_get_mib(struct eapol_sm *sm, char *buf, size_t buflen); 263 void eapol_sm_configure(struct eapol_sm *sm, int heldPeriod, int authPeriod, 265 int eapol_sm_rx_eapol(struct eapol_sm *sm, const u8 *src, const u8 *buf, 267 void eapol_sm_notify_tx_eapol_key(struct eapol_sm *sm) [all...] |
eapol_supp_sm.c | 22 #define STATE_MACHINE_DATA struct eapol_sm 29 * struct eapol_sm - Internal data for EAPOL state machines 31 struct eapol_sm { struct 147 static void eapol_sm_txLogoff(struct eapol_sm *sm); 148 static void eapol_sm_txStart(struct eapol_sm *sm); 149 static void eapol_sm_processKey(struct eapol_sm *sm); 150 static void eapol_sm_getSuppRsp(struct eapol_sm *sm); 151 static void eapol_sm_txSuppRsp(struct eapol_sm *sm); 152 static void eapol_sm_abortSupp(struct eapol_sm *sm); 153 static void eapol_sm_abort_cached(struct eapol_sm *sm) [all...] |
/external/wpa_supplicant_8/src/ap/ |
ieee802_1x.c | 119 struct eapol_state_machine *sm = sta->eapol_sm; 183 if (sta->eapol_sm) 184 sta->eapol_sm->dot1xAuthEapolFramesTx++; 192 struct eapol_state_machine *sm = sta->eapol_sm; 441 struct eapol_state_machine *sm = sta->eapol_sm; 539 struct eapol_state_machine *sm = sta->eapol_sm; 678 if (sta->eapol_sm) 679 sta->eapol_sm->dot1xAuthEapLengthErrorFramesRx++; 688 if (sta->eapol_sm) { 689 sta->eapol_sm->dot1xAuthLastEapolFrameVersion = hdr->version [all...] |
wpa_auth_glue.c | 137 ieee802_1x_notify_port_enabled(sta->eapol_sm, value); 140 ieee802_1x_notify_port_valid(sta->eapol_sm, value); 146 if (sta->eapol_sm) 147 sta->eapol_sm->portControl = Auto; 150 if (sta->eapol_sm) 151 sta->eapol_sm->keyRun = value ? TRUE : FALSE; 154 if (sta->eapol_sm) 155 sta->eapol_sm->eap_if->eapKeyAvailable = 159 if (sta->eapol_sm) 160 sta->eapol_sm->keyDone = value ? TRUE : FALSE [all...] |
preauth_auth.c | 80 if (sta->eapol_sm == NULL) { 84 sta->eapol_sm->radius_identifier = -1; 85 sta->eapol_sm->portValid = TRUE; 86 sta->eapol_sm->flags |= EAPOL_SM_PREAUTH; 204 key = ieee802_1x_get_key(sta->eapol_sm, &len); 211 sta->eapol_sm) == 0) {
|
accounting.c | 83 val = ieee802_1x_get_identity(sta->eapol_sm, &len); 113 val = ieee802_1x_get_radius_class(sta->eapol_sm, &len, 125 b = ieee802_1x_get_radius_cui(sta->eapol_sm);
|
sta_info.h | 73 struct eapol_state_machine *eapol_sm; member in struct:sta_info
|
authsrv.c | 32 if (eapol_auth_eap_pending_cb(sta->eapol_sm, ctx) == 0)
|
drv_callbacks.c | 302 ieee802_1x_notify_port_enabled(sta->eapol_sm, 1); 354 ieee802_1x_notify_port_enabled(sta->eapol_sm, 0); 482 ieee802_1x_notify_pre_auth(sta->eapol_sm, 0);
|
sta_info.c | 427 ieee802_1x_notify_port_enabled(sta->eapol_sm, 0); 555 ieee802_1x_notify_port_enabled(sta->eapol_sm, 0); 955 ieee802_1x_notify_port_enabled(sta->eapol_sm, 0);
|
ieee802_11.c | 680 ieee802_1x_notify_pre_auth(sta->eapol_sm, 0); [all...] |
wps_hostapd.c | [all...] |
hostapd.c | 547 cui = ieee802_1x_get_radius_cui(sta->eapol_sm); 559 identity = ieee802_1x_get_identity(sta->eapol_sm, [all...] |
/external/wpa_supplicant_8/src/rsn_supp/ |
wpa.h | 18 struct eapol_sm; 111 void wpa_sm_set_eapol(struct wpa_sm *sm, struct eapol_sm *eapol); 195 static inline void wpa_sm_set_eapol(struct wpa_sm *sm, struct eapol_sm *eapol)
|
wpa_i.h | 33 struct eapol_sm *eapol; /* EAPOL state machine from upper level code */ 45 struct eapol_sm *preauth_eapol;
|
preauth.c | 73 static void rsn_preauth_eapol_cb(struct eapol_sm *eapol, int success,
|
wpa.c | [all...] |
/external/wpa_supplicant_8/hostapd/ |
dump_state.c | 37 struct eapol_state_machine *sm = sta->eapol_sm;
|
/external/wpa_supplicant_8/wpa_supplicant/ |
wpa_supplicant_i.h | 410 struct eapol_sm *eapol;
|
eapol_test.c | 370 static void eapol_sm_cb(struct eapol_sm *eapol, int success, void *ctx) 675 /* sta->eapol_sm->be_auth.idFromServer = hdr->identifier; */ [all...] |
wpas_glue.c | 219 static void wpa_supplicant_eapol_cb(struct eapol_sm *eapol, int success,
|