HomeSort by relevance Sort by last modified time
    Searched full:eapol_sm (Results 1 - 25 of 32) sorted by null

1 2

  /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);
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 21 #define STATE_MACHINE_DATA struct eapol_sm
28 * struct eapol_sm - Internal data for EAPOL state machines
30 struct eapol_sm { struct
142 static void eapol_sm_txLogoff(struct eapol_sm *sm);
143 static void eapol_sm_txStart(struct eapol_sm *sm);
144 static void eapol_sm_processKey(struct eapol_sm *sm);
145 static void eapol_sm_getSuppRsp(struct eapol_sm *sm);
146 static void eapol_sm_txSuppRsp(struct eapol_sm *sm);
147 static void eapol_sm_abortSupp(struct eapol_sm *sm);
148 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;
538 struct eapol_state_machine *sm = sta->eapol_sm;
636 struct eapol_state_machine *sm = sta->eapol_sm;
775 if (sta->eapol_sm)
776 sta->eapol_sm->dot1xAuthEapLengthErrorFramesRx++;
785 if (sta->eapol_sm) {
786 sta->eapol_sm->dot1xAuthLastEapolFrameVersion = hdr->version
    [all...]
wpa_auth_glue.c 131 ieee802_1x_notify_port_enabled(sta->eapol_sm, value);
134 ieee802_1x_notify_port_valid(sta->eapol_sm, value);
140 if (sta->eapol_sm)
141 sta->eapol_sm->portControl = Auto;
144 if (sta->eapol_sm)
145 sta->eapol_sm->keyRun = value ? TRUE : FALSE;
148 if (sta->eapol_sm)
149 sta->eapol_sm->eap_if->eapKeyAvailable =
153 if (sta->eapol_sm)
154 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 85 val = ieee802_1x_get_identity(sta->eapol_sm, &len);
115 val = ieee802_1x_get_radius_class(sta->eapol_sm, &len,
127 b = ieee802_1x_get_radius_cui(sta->eapol_sm);
authsrv.c 32 if (eapol_auth_eap_pending_cb(sta->eapol_sm, ctx) == 0)
sta_info.h 72 struct eapol_state_machine *eapol_sm; member in struct:sta_info
drv_callbacks.c 287 ieee802_1x_notify_port_enabled(sta->eapol_sm, 1);
339 ieee802_1x_notify_port_enabled(sta->eapol_sm, 0);
451 ieee802_1x_notify_pre_auth(sta->eapol_sm, 0);
sta_info.c 391 ieee802_1x_notify_port_enabled(sta->eapol_sm, 0);
516 ieee802_1x_notify_port_enabled(sta->eapol_sm, 0);
926 ieee802_1x_notify_port_enabled(sta->eapol_sm, 0);
ieee802_11.c 432 ieee802_1x_notify_pre_auth(sta->eapol_sm, 0);
    [all...]
wps_hostapd.c     [all...]
hostapd.c 550 cui = ieee802_1x_get_radius_cui(sta->eapol_sm);
562 identity = ieee802_1x_get_identity(sta->eapol_sm,
    [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 365 struct eapol_sm *eapol;

Completed in 1007 milliseconds

1 2