HomeSort by relevance Sort by last modified time
    Searched refs:auth_alg (Results 1 - 25 of 63) sorted by null

1 2 3

  /external/wpa_supplicant_8/src/ap/
ap_mlme.c 50 * AuthenticationType = sta->auth_alg (WLAN_AUTH_OPEN / WLAN_AUTH_SHARED_KEY)
58 MAC2STR(sta->addr), mlme_auth_alg_str(sta->auth_alg));
59 if (sta->auth_alg != WLAN_AUTH_FT && !(sta->flags & WLAN_STA_MFP))
105 if (sta->auth_alg != WLAN_AUTH_FT)
131 if (sta->auth_alg != WLAN_AUTH_FT)
ieee802_11.c 236 u16 auth_alg, u16 auth_transaction, u16 resp,
255 reply->u.auth.auth_alg = host_to_le16(auth_alg);
263 " auth_alg=%d auth_transaction=%d resp=%d (IE len=%lu)",
264 MAC2STR(dst), auth_alg, auth_transaction,
302 u16 auth_alg, auth_transaction, status_code; local
321 auth_alg = le_to_host16(mgmt->u.auth.auth_alg);
332 wpa_printf(MSG_DEBUG, "authentication: STA=" MACSTR " auth_alg=%d "
334 MAC2STR(mgmt->sa), auth_alg, auth_transaction
1445 u16 auth_alg, auth_transaction, status_code; local
    [all...]
sta_info.h 59 u16 auth_alg; member in struct:sta_info
ap_drv_ops.c 218 sta->auth_alg == WLAN_AUTH_FT) &&
282 u16 auth_alg)
286 return hapd->driver->add_sta_node(hapd->drv_priv, addr, auth_alg);
  /external/wpa_supplicant_6/wpa_supplicant/src/common/
privsep_commands.h 46 int auth_alg; member in struct:privsep_cmd_associate
  /external/wpa_supplicant_8/src/common/
privsep_commands.h 38 int auth_alg; member in struct:privsep_cmd_associate
  /external/wpa_supplicant_6/wpa_supplicant/
config_ssid.h 162 * auth_alg - Bitfield of allowed authentication algorithms
166 int auth_alg; member in struct:wpa_ssid
mlme.c 257 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_transaction, status_code)
    [all...]
wpa_supplicant.conf.orig 273 # auth_alg: list of allowed IEEE 802.11 authentication algorithms
751 auth_alg=SHARED
wps_supplicant.c 312 ssid->auth_alg = WPA_AUTH_ALG_OPEN;
317 ssid->auth_alg = WPA_AUTH_ALG_SHARED;
322 ssid->auth_alg = WPA_AUTH_ALG_OPEN;
327 ssid->auth_alg = WPA_AUTH_ALG_OPEN;
332 ssid->auth_alg = WPA_AUTH_ALG_OPEN;
337 ssid->auth_alg = WPA_AUTH_ALG_OPEN;
wpa_supplicant_i.h 218 int auth_alg; /* currently used IEEE 802.11 authentication algorithm */ member in struct:wpa_client_mlme
477 int auth_alg)
481 auth_alg);
  /external/wpa_supplicant_8/wpa_supplicant/
config_ssid.h 165 * auth_alg - Bitfield of allowed authentication algorithms
169 int auth_alg; member in struct:wpa_ssid
sme.c 78 params.auth_alg = WPA_AUTH_ALG_OPEN;
83 params.auth_alg = WPA_AUTH_ALG_LEAP;
85 params.auth_alg |= WPA_AUTH_ALG_LEAP;
89 wpa_dbg(wpa_s, MSG_DEBUG, "Automatic auth_alg selection: 0x%x",
90 params.auth_alg);
91 if (ssid->auth_alg) {
92 params.auth_alg = ssid->auth_alg;
93 wpa_dbg(wpa_s, MSG_DEBUG, "Overriding auth_alg selection: "
94 "0x%x", params.auth_alg);
    [all...]
wpa_supplicant.conf 344 # auth_alg: list of allowed IEEE 802.11 authentication algorithms
    [all...]
  /external/wpa_supplicant_6/wpa_supplicant/src/drivers/
driver_ndiswrapper.c 59 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)
257 priv_req.u.param.value = auth_alg;
driver_hostap.c 402 static int wpa_driver_hostap_set_auth_alg(void *priv, int auth_alg)
407 if (auth_alg & AUTH_ALG_OPEN_SYSTEM)
409 if (auth_alg & AUTH_ALG_SHARED_KEY)
411 if (auth_alg & AUTH_ALG_LEAP)
driver_ipw.c 345 static int wpa_driver_ipw_set_auth_alg(void *priv, int auth_alg)
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);
driver_madwifi.c 409 wpa_driver_madwifi_set_auth_alg(void *priv, int auth_alg)
414 if ((auth_alg & AUTH_ALG_OPEN_SYSTEM) &&
415 (auth_alg & AUTH_ALG_SHARED_KEY))
417 else if (auth_alg & AUTH_ALG_SHARED_KEY)
driver.h 200 * 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);
    [all...]
driver_bsd.c 417 wpa_driver_bsd_set_auth_alg(void *priv, int auth_alg)
422 if ((auth_alg & AUTH_ALG_OPEN_SYSTEM) &&
423 (auth_alg & AUTH_ALG_SHARED_KEY))
425 else if (auth_alg & AUTH_ALG_SHARED_KEY)
  /hardware/ti/wlan/wl1271/CUDK/configurationutility/src/
wpa_core.c 64 S32 auth_alg; member in struct:__anon18492
116 pWpaCore->WpaSupplParams.auth_alg = WPA_AUTH_ALG_OPEN; /* Open authentication */
195 pWpaCore->WpaSupplParams.auth_alg = WPA_AUTH_ALG_OPEN;
200 pWpaCore->WpaSupplParams.auth_alg = WPA_AUTH_ALG_SHARED;
205 pWpaCore->WpaSupplParams.auth_alg = WPA_AUTH_ALG_OPEN;
210 pWpaCore->WpaSupplParams.auth_alg = WPA_AUTH_ALG_OPEN;
215 pWpaCore->WpaSupplParams.auth_alg = WPA_AUTH_ALG_OPEN;
220 pWpaCore->WpaSupplParams.auth_alg = WPA_AUTH_ALG_OPEN;
225 pWpaCore->WpaSupplParams.auth_alg = WPA_AUTH_ALG_OPEN;
655 if (pWpaCore->WpaSupplParams.auth_alg == WPA_AUTH_ALG_OPEN
    [all...]
  /hardware/broadcom/wlan/bcmdhd/wpa_supplicant_8_lib/
driver_nl80211.h 183 int auth_alg; member in struct:wpa_driver_nl80211_data
  /external/tcpdump/
print-802_11.c 489 pbody.auth_alg = EXTRACT_LE_16BITS(p);
498 if ((pbody.auth_alg == 1) &&
502 (pbody.auth_alg < NUM_AUTH_ALGS)
503 ? auth_alg_text[pbody.auth_alg]
513 (pbody.auth_alg < NUM_AUTH_ALGS)
514 ? auth_alg_text[pbody.auth_alg]
ieee802_11.h 234 u_int16_t auth_alg; member in struct:mgmt_body_t
  /external/wpa_supplicant_8/src/drivers/
driver_privsep.c 230 "group_suite=%d key_mgmt_suite=%d auth_alg=%d mode=%d",
233 params->auth_alg, params->mode);
248 data->auth_alg = params->auth_alg;

Completed in 696 milliseconds

1 2 3