OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
defs:eapol_conf
(Results
1 - 3
of
3
) sorted by null
/external/wpa_supplicant_8/src/rsn_supp/
preauth.c
172
struct eapol_config
eapol_conf
;
local
226
os_memset(&
eapol_conf
, 0, sizeof(
eapol_conf
));
227
eapol_conf
.accept_802_1x_keys = 0;
228
eapol_conf
.required_keys = 0;
229
eapol_conf
.fast_reauth = sm->fast_reauth;
230
eapol_conf
.workaround = sm->eap_workaround;
231
eapol_sm_notify_config(sm->preauth_eapol, eap_conf, &
eapol_conf
);
/external/wpa_supplicant_8/wpa_supplicant/
eapol_test.c
549
struct eapol_config
eapol_conf
;
local
584
os_memset(&
eapol_conf
, 0, sizeof(
eapol_conf
));
585
eapol_conf
.accept_802_1x_keys = 1;
586
eapol_conf
.required_keys = 0;
587
eapol_conf
.fast_reauth = wpa_s->conf->fast_reauth;
588
eapol_conf
.workaround = ssid->eap_workaround;
589
eapol_conf
.external_sim = wpa_s->conf->external_sim;
590
eapol_sm_notify_config(wpa_s->eapol, &ssid->eap, &
eapol_conf
);
[
all
...]
wpa_supplicant.c
254
struct eapol_config
eapol_conf
;
local
281
os_memset(&
eapol_conf
, 0, sizeof(
eapol_conf
));
283
eapol_conf
.accept_802_1x_keys = 1;
284
eapol_conf
.required_keys = 0;
286
eapol_conf
.required_keys |= EAPOL_REQUIRE_KEY_UNICAST;
289
eapol_conf
.required_keys |=
294
eapol_conf
.required_keys = 0;
296
eapol_conf
.fast_reauth = wpa_s->conf->fast_reauth;
297
eapol_conf
.workaround = ssid->eap_workaround
[
all
...]
Completed in 102 milliseconds