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
170
struct eapol_config
eapol_conf
;
local
224
os_memset(&
eapol_conf
, 0, sizeof(
eapol_conf
));
225
eapol_conf
.accept_802_1x_keys = 0;
226
eapol_conf
.required_keys = 0;
227
eapol_conf
.fast_reauth = sm->fast_reauth;
228
eapol_conf
.workaround = sm->eap_workaround;
229
eapol_sm_notify_config(sm->preauth_eapol, eap_conf, &
eapol_conf
);
/external/wpa_supplicant_8/wpa_supplicant/
eapol_test.c
465
struct eapol_config
eapol_conf
;
local
499
os_memset(&
eapol_conf
, 0, sizeof(
eapol_conf
));
500
eapol_conf
.accept_802_1x_keys = 1;
501
eapol_conf
.required_keys = 0;
502
eapol_conf
.fast_reauth = wpa_s->conf->fast_reauth;
503
eapol_conf
.workaround = ssid->eap_workaround;
504
eapol_sm_notify_config(wpa_s->eapol, &ssid->eap, &
eapol_conf
);
[
all
...]
wpa_supplicant.c
255
struct eapol_config
eapol_conf
;
local
282
os_memset(&
eapol_conf
, 0, sizeof(
eapol_conf
));
284
eapol_conf
.accept_802_1x_keys = 1;
285
eapol_conf
.required_keys = 0;
287
eapol_conf
.required_keys |= EAPOL_REQUIRE_KEY_UNICAST;
290
eapol_conf
.required_keys |=
295
eapol_conf
.required_keys = 0;
298
eapol_conf
.fast_reauth = wpa_s->conf->fast_reauth;
299
eapol_conf
.workaround = ssid->eap_workaround
[
all
...]
Completed in 158 milliseconds