/external/wpa_supplicant_6/wpa_supplicant/src/eapol_supp/ |
eapol_supp_sm.h | 64 struct eapol_sm; 95 void (*cb)(struct eapol_sm *eapol, int success, void *ctx); 224 struct eapol_sm *eapol_sm_init(struct eapol_ctx *ctx); 225 void eapol_sm_deinit(struct eapol_sm *sm); 226 void eapol_sm_step(struct eapol_sm *sm); 227 int eapol_sm_get_status(struct eapol_sm *sm, char *buf, size_t buflen, 229 int eapol_sm_get_mib(struct eapol_sm *sm, char *buf, size_t buflen); 230 void eapol_sm_configure(struct eapol_sm *sm, int heldPeriod, int authPeriod, 232 int eapol_sm_rx_eapol(struct eapol_sm *sm, const u8 *src, const u8 *buf, 234 void eapol_sm_notify_tx_eapol_key(struct eapol_sm *sm) [all...] |
eapol_supp_sm.c | 27 #define STATE_MACHINE_DATA struct eapol_sm 34 * struct eapol_sm - Internal data for EAPOL state machines 36 struct eapol_sm { struct 188 static void eapol_sm_txLogoff(struct eapol_sm *sm); 189 static void eapol_sm_txStart(struct eapol_sm *sm); 190 static void eapol_sm_processKey(struct eapol_sm *sm); 191 static void eapol_sm_getSuppRsp(struct eapol_sm *sm); 192 static void eapol_sm_txSuppRsp(struct eapol_sm *sm); 193 static void eapol_sm_abortSupp(struct eapol_sm *sm); 194 static void eapol_sm_abort_cached(struct eapol_sm *sm) [all...] |
/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); 239 struct eapol_sm *eapol_sm_init(struct eapol_ctx *ctx); 240 void eapol_sm_deinit(struct eapol_sm *sm); 241 void eapol_sm_step(struct eapol_sm *sm); 242 int eapol_sm_get_status(struct eapol_sm *sm, char *buf, size_t buflen, 244 int eapol_sm_get_mib(struct eapol_sm *sm, char *buf, size_t buflen); 245 void eapol_sm_configure(struct eapol_sm *sm, int heldPeriod, int authPeriod, 247 int eapol_sm_rx_eapol(struct eapol_sm *sm, const u8 *src, const u8 *buf, 249 void eapol_sm_notify_tx_eapol_key(struct eapol_sm *sm) [all...] |
eapol_supp_sm.c | 21 #define STATE_MACHINE_DATA struct eapol_sm 28 * struct eapol_sm - Internal data for EAPOL state machines 30 struct eapol_sm { struct 182 static void eapol_sm_txLogoff(struct eapol_sm *sm); 183 static void eapol_sm_txStart(struct eapol_sm *sm); 184 static void eapol_sm_processKey(struct eapol_sm *sm); 185 static void eapol_sm_getSuppRsp(struct eapol_sm *sm); 186 static void eapol_sm_txSuppRsp(struct eapol_sm *sm); 187 static void eapol_sm_abortSupp(struct eapol_sm *sm); 188 static void eapol_sm_abort_cached(struct eapol_sm *sm) [all...] |
/external/wpa_supplicant_8/src/ap/ |
ieee802_1x.c | 116 struct eapol_state_machine *sm = sta->eapol_sm; 180 if (sta->eapol_sm) 181 sta->eapol_sm->dot1xAuthEapolFramesTx++; 289 struct eapol_state_machine *sm = sta->eapol_sm; 418 struct eapol_state_machine *sm = sta->eapol_sm; 560 struct eapol_state_machine *sm = sta->eapol_sm; 698 if (sta->eapol_sm) 699 sta->eapol_sm->dot1xAuthEapLengthErrorFramesRx++; 708 if (sta->eapol_sm) { 709 sta->eapol_sm->dot1xAuthLastEapolFrameVersion = hdr->version [all...] |
wpa_auth_glue.c | 128 ieee802_1x_notify_port_enabled(sta->eapol_sm, value); 131 ieee802_1x_notify_port_valid(sta->eapol_sm, value); 137 if (sta->eapol_sm) 138 sta->eapol_sm->portControl = Auto; 141 if (sta->eapol_sm) 142 sta->eapol_sm->keyRun = value ? TRUE : FALSE; 145 if (sta->eapol_sm) 146 sta->eapol_sm->eap_if->eapKeyAvailable = 150 if (sta->eapol_sm) 151 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 | 79 val = ieee802_1x_get_identity(sta->eapol_sm, &len); 159 val = ieee802_1x_get_radius_class(sta->eapol_sm, &len,
|
authsrv.c | 32 if (eapol_auth_eap_pending_cb(sta->eapol_sm, ctx) == 0)
|
sta_info.h | 70 struct eapol_state_machine *eapol_sm; member in struct:sta_info
|
drv_callbacks.c | 197 ieee802_1x_notify_port_enabled(sta->eapol_sm, 1); 246 ieee802_1x_notify_port_enabled(sta->eapol_sm, 0);
|
sta_info.c | 362 ieee802_1x_notify_port_enabled(sta->eapol_sm, 0); 474 ieee802_1x_notify_port_enabled(sta->eapol_sm, 0); 849 ieee802_1x_notify_port_enabled(sta->eapol_sm, 0);
|
ieee802_11.c | 425 ieee802_1x_notify_pre_auth(sta->eapol_sm, 0); [all...] |
wps_hostapd.c | [all...] |
/external/wpa_supplicant_6/wpa_supplicant/src/rsn_supp/ |
wpa.h | 31 struct eapol_sm; 105 void wpa_sm_set_eapol(struct wpa_sm *sm, struct eapol_sm *eapol); 181 static inline void wpa_sm_set_eapol(struct wpa_sm *sm, struct eapol_sm *eapol)
|
wpa_i.h | 37 struct eapol_sm *eapol; /* EAPOL state machine from upper level code */ 48 struct eapol_sm *preauth_eapol;
|
preauth.c | 83 static void rsn_preauth_eapol_cb(struct eapol_sm *eapol, int success,
|
/external/wpa_supplicant_8/src/rsn_supp/ |
wpa.h | 17 struct eapol_sm; 107 void wpa_sm_set_eapol(struct wpa_sm *sm, struct eapol_sm *eapol); 190 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,
|
/external/wpa_supplicant_8/hostapd/ |
dump_state.c | 36 struct eapol_state_machine *sm = sta->eapol_sm;
|
/external/wpa_supplicant_6/wpa_supplicant/ |
wpas_glue.c | 222 static void wpa_supplicant_eapol_cb(struct eapol_sm *eapol, int success,
|
eapol_test.c | 371 static void eapol_sm_cb(struct eapol_sm *eapol, int success, void *ctx) 597 /* sta->eapol_sm->be_auth.idFromServer = hdr->identifier; */
|
/external/wpa_supplicant_8/wpa_supplicant/ |
wpa_supplicant_i.h | 322 struct eapol_sm *eapol;
|
eapol_test.c | 369 static void eapol_sm_cb(struct eapol_sm *eapol, int success, void *ctx) 640 /* sta->eapol_sm->be_auth.idFromServer = hdr->identifier; */ [all...] |