Searched defs:auth_alg (Results 1 - 24 of 24) sorted by relevance

/external/wpa_supplicant_6/wpa_supplicant/
H A Dconfig_ssid.h162 * auth_alg - Bitfield of allowed authentication algorithms
166 int auth_alg; member in struct:wpa_ssid
H A Dmlme.c257 mgmt->u.auth.auth_alg = host_to_le16(wpa_s->mlme.auth_alg);
312 wpa_s->mlme.auth_alg = WLAN_AUTH_FT;
422 if (wpa_s->mlme.extra_ie && wpa_s->mlme.auth_alg != WLAN_AUTH_FT) {
431 wpa_s->mlme.auth_alg != WLAN_AUTH_FT &&
446 wpa_s->mlme.auth_alg == WLAN_AUTH_FT && wpa_s->mlme.ft_ies) {
768 u16 auth_alg, auth_transaction, status_code; local
803 auth_alg = le_to_host16(mgmt->u.auth.auth_alg);
809 MAC2STR(mgmt->sa), auth_alg, auth_transactio
[all...]
H A Dwpa_supplicant_i.h218 int auth_alg; /* currently used IEEE 802.11 authentication algorithm */ member in struct:wpa_client_mlme
477 int auth_alg)
481 auth_alg);
476 wpa_drv_set_auth_alg(struct wpa_supplicant *wpa_s, int auth_alg) argument
/external/wpa_supplicant_6/wpa_supplicant/src/common/
H A Dprivsep_commands.h46 int auth_alg; member in struct:privsep_cmd_associate
H A Dieee802_11_defs.h245 le16 auth_alg; member in struct:ieee80211_mgmt::__anon6933::__anon6934
/external/wpa_supplicant_6/wpa_supplicant/src/drivers/
H A Ddriver_hostap.c402 static int wpa_driver_hostap_set_auth_alg(void *priv, int auth_alg) argument
407 if (auth_alg & AUTH_ALG_OPEN_SYSTEM)
409 if (auth_alg & AUTH_ALG_SHARED_KEY)
411 if (auth_alg & AUTH_ALG_LEAP)
H A Ddriver_madwifi.c409 wpa_driver_madwifi_set_auth_alg(void *priv, int auth_alg) argument
414 if ((auth_alg & AUTH_ALG_OPEN_SYSTEM) &&
415 (auth_alg & AUTH_ALG_SHARED_KEY))
417 else if (auth_alg & AUTH_ALG_SHARED_KEY)
H A Ddriver_ndiswrapper.c59 int auth_alg; member in struct:wpa_assoc_info
238 wpa_assoc_info.auth_alg = params->auth_alg;
249 static int wpa_ndiswrapper_set_auth_alg(void *priv, int auth_alg) argument
257 priv_req.u.param.value = auth_alg;
H A Ddriver_bsd.c417 wpa_driver_bsd_set_auth_alg(void *priv, int auth_alg) argument
422 if ((auth_alg & AUTH_ALG_OPEN_SYSTEM) &&
423 (auth_alg & AUTH_ALG_SHARED_KEY))
425 else if (auth_alg & AUTH_ALG_SHARED_KEY)
H A Ddriver_ipw.c345 static int wpa_driver_ipw_set_auth_alg(void *priv, int auth_alg) argument
350 if (auth_alg & AUTH_ALG_OPEN_SYSTEM)
352 if (auth_alg & AUTH_ALG_SHARED_KEY)
354 if (auth_alg & AUTH_ALG_LEAP)
359 wpa_printf(MSG_DEBUG, "%s: auth_alg=0x%x", __FUNCTION__, algs);
H A Ddriver.h200 * auth_alg - Allowed authentication algorithms
203 int auth_alg; member in struct:wpa_driver_associate_params
647 * @auth_alg: bit field of AUTH_ALG_*
663 int (*set_auth_alg)(void *priv, int auth_alg);
H A Ddriver_nl80211.c2118 if (params->auth_alg & AUTH_ALG_OPEN_SYSTEM)
2120 if (params->auth_alg & AUTH_ALG_SHARED_KEY)
2215 static int wpa_driver_nl80211_set_auth_alg(void *priv, int auth_alg) argument
2220 if (auth_alg & AUTH_ALG_OPEN_SYSTEM)
2222 if (auth_alg & AUTH_ALG_SHARED_KEY)
2224 if (auth_alg & AUTH_ALG_LEAP)
H A Ddriver_wext.c2199 if (params->auth_alg & AUTH_ALG_OPEN_SYSTEM)
2201 if (params->auth_alg & AUTH_ALG_SHARED_KEY)
2323 static int wpa_driver_wext_set_auth_alg(void *priv, int auth_alg) argument
2328 if (auth_alg & AUTH_ALG_OPEN_SYSTEM)
2330 if (auth_alg & AUTH_ALG_SHARED_KEY)
2332 if (auth_alg & AUTH_ALG_LEAP)
/external/wpa_supplicant/
H A Ddriver_hostap.c404 static int wpa_driver_hostap_set_auth_alg(void *priv, int auth_alg) argument
409 if (auth_alg & AUTH_ALG_OPEN_SYSTEM)
411 if (auth_alg & AUTH_ALG_SHARED_KEY)
413 if (auth_alg & AUTH_ALG_LEAP)
H A Ddriver_madwifi.c399 wpa_driver_madwifi_set_auth_alg(void *priv, int auth_alg) argument
404 if ((auth_alg & AUTH_ALG_OPEN_SYSTEM) &&
405 (auth_alg & AUTH_ALG_SHARED_KEY))
407 else if (auth_alg & AUTH_ALG_SHARED_KEY)
H A Ddriver_ndiswrapper.c59 int auth_alg; member in struct:wpa_assoc_info
238 wpa_assoc_info.auth_alg = params->auth_alg;
249 static int wpa_ndiswrapper_set_auth_alg(void *priv, int auth_alg) argument
257 priv_req.u.param.value = auth_alg;
H A Ddriver_bsd.c419 wpa_driver_bsd_set_auth_alg(void *priv, int auth_alg) argument
424 if ((auth_alg & AUTH_ALG_OPEN_SYSTEM) &&
425 (auth_alg & AUTH_ALG_SHARED_KEY))
427 else if (auth_alg & AUTH_ALG_SHARED_KEY)
H A Ddriver_ipw.c347 static int wpa_driver_ipw_set_auth_alg(void *priv, int auth_alg) argument
352 if (auth_alg & AUTH_ALG_OPEN_SYSTEM)
354 if (auth_alg & AUTH_ALG_SHARED_KEY)
356 if (auth_alg & AUTH_ALG_LEAP)
361 wpa_printf(MSG_DEBUG, "%s: auth_alg=0x%x", __FUNCTION__, algs);
H A Dconfig_ssid.h188 * auth_alg - Bitfield of allowed authentication algorithms
192 int auth_alg; member in struct:wpa_ssid
H A Ddriver.h122 * auth_alg - Allowed authentication algorithms
125 int auth_alg; member in struct:wpa_driver_associate_params
485 * @auth_alg: bit field of AUTH_ALG_*
501 int (*set_auth_alg)(void *priv, int auth_alg);
H A Ddriver_wext.c1924 if (params->auth_alg & AUTH_ALG_OPEN_SYSTEM)
1926 if (params->auth_alg & AUTH_ALG_SHARED_KEY)
2030 static int wpa_driver_wext_set_auth_alg(void *priv, int auth_alg) argument
2035 if (auth_alg & AUTH_ALG_OPEN_SYSTEM)
2037 if (auth_alg & AUTH_ALG_SHARED_KEY)
2039 if (auth_alg & AUTH_ALG_LEAP)
H A Dwpa_supplicant_i.h219 int auth_alg; /* currently used IEEE 802.11 authentication algorithm */ member in struct:wpa_client_mlme
452 int auth_alg)
456 auth_alg);
451 wpa_drv_set_auth_alg(struct wpa_supplicant *wpa_s, int auth_alg) argument
H A Dmlme.c94 u16 auth_alg; member in struct:ieee80211_mgmt::__anon6868::__anon6869
616 mgmt->u.auth.auth_alg = host_to_le16(wpa_s->mlme.auth_alg);
1063 u16 auth_alg, auth_transaction, status_code; local
1098 auth_alg = le_to_host16(mgmt->u.auth.auth_alg);
1104 MAC2STR(mgmt->sa), auth_alg, auth_transaction, status_code);
1112 if (auth_alg != WLAN_AUTH_OPEN || auth_transaction != 1) {
1116 auth_alg, auth_transaction);
1122 if (auth_alg !
[all...]
/external/tcpdump/
H A Dieee802_11.h234 u_int16_t auth_alg; member in struct:mgmt_body_t

Completed in 197 milliseconds