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
173
struct eapol_config
eapol_conf
;
local
231
os_memset(&
eapol_conf
, 0, sizeof(
eapol_conf
));
232
eapol_conf
.accept_802_1x_keys = 0;
233
eapol_conf
.required_keys = 0;
234
eapol_conf
.fast_reauth = sm->fast_reauth;
235
eapol_conf
.workaround = sm->eap_workaround;
236
eapol_sm_notify_config(sm->preauth_eapol, eap_conf, &
eapol_conf
);
/external/wpa_supplicant_8/wpa_supplicant/
eapol_test.c
585
struct eapol_config
eapol_conf
;
local
641
os_memset(&
eapol_conf
, 0, sizeof(
eapol_conf
));
642
eapol_conf
.accept_802_1x_keys = 1;
643
eapol_conf
.required_keys = 0;
644
eapol_conf
.fast_reauth = wpa_s->conf->fast_reauth;
645
eapol_conf
.workaround = ssid->eap_workaround;
646
eapol_conf
.external_sim = wpa_s->conf->external_sim;
647
eapol_sm_notify_config(wpa_s->eapol, &ssid->eap, &
eapol_conf
);
[
all
...]
wpa_supplicant.c
301
struct eapol_config
eapol_conf
;
local
328
os_memset(&
eapol_conf
, 0, sizeof(
eapol_conf
));
330
eapol_conf
.accept_802_1x_keys = 1;
331
eapol_conf
.required_keys = 0;
333
eapol_conf
.required_keys |= EAPOL_REQUIRE_KEY_UNICAST;
336
eapol_conf
.required_keys |=
341
eapol_conf
.required_keys = 0;
343
eapol_conf
.fast_reauth = wpa_s->conf->fast_reauth;
344
eapol_conf
.workaround = ssid->eap_workaround
[
all
...]
Completed in 288 milliseconds