/external/wpa_supplicant_6/wpa_supplicant/ |
config.c | 870 wpa_printf(MSG_ERROR, "Line %d: invalid auth_alg '%s'", 883 "Line %d: no auth_alg values configured.", line); 887 wpa_printf(MSG_MSGDUMP, "auth_alg: 0x%x", val); 888 ssid->auth_alg = val; 905 if (ssid->auth_alg & WPA_AUTH_ALG_OPEN) { 915 if (ssid->auth_alg & WPA_AUTH_ALG_SHARED) { 925 if (ssid->auth_alg & WPA_AUTH_ALG_LEAP) { [all...] |
config_winreg.c | 743 if (ssid->auth_alg == 0) 746 value = wpa_config_get(ssid, "auth_alg"); 750 wpa_config_write_reg_string(hk, "auth_alg", value);
|
wpa_supplicant_i.h | 218 int auth_alg; /* currently used IEEE 802.11 authentication algorithm */ member in struct:wpa_client_mlme 476 int auth_alg) 480 auth_alg);
|
wpa_supplicant.c | 1005 wpa_printf(MSG_DEBUG, "Automatic auth_alg selection: 0x%x", algs); 1006 if (ssid->auth_alg) { 1008 if (ssid->auth_alg & WPA_AUTH_ALG_OPEN) 1010 if (ssid->auth_alg & WPA_AUTH_ALG_SHARED) 1012 if (ssid->auth_alg & WPA_AUTH_ALG_LEAP) 1014 wpa_printf(MSG_DEBUG, "Overriding auth_alg selection: 0x%x", [all...] |
ctrl_iface_dbus_handlers.c | 750 &iter_dict, "auth_alg", args, 755 if (!wpa_dbus_dict_begin_string_array(&iter_dict, "auth_alg", 916 "key_mgmt", "proto", "pairwise", "auth_alg", "group", "eap", [all...] |
config_file.c | 695 if (ssid->auth_alg == 0) 698 value = wpa_config_get(ssid, "auth_alg");
|
/external/wpa_supplicant/ |
todo.txt | 123 - wpa_gui: add support for setting and showing priority, id_str, auth_alg
|
config_winreg.c | 655 if (ssid->auth_alg == 0) 658 value = wpa_config_get(ssid, "auth_alg"); 662 wpa_config_write_reg_string(hk, "auth_alg", value);
|
driver_wext.c | [all...] |
ctrl_iface_dbus_handlers.c | 692 &iter_dict, "auth_alg", args, 697 if (!wpa_dbus_dict_begin_string_array(&iter_dict, "auth_alg", 858 "key_mgmt", "proto", "pairwise", "auth_alg", "group", "eap", [all...] |
config_file.c | 531 if (ssid->auth_alg == 0) 534 value = wpa_config_get(ssid, "auth_alg");
|
config_ssid.h | 188 * auth_alg - Bitfield of allowed authentication algorithms 192 int auth_alg; member in struct:wpa_ssid
|
driver_test.c | 158 "group_suite=%d key_mgmt_suite=%d auth_alg=%d mode=%d", 161 params->auth_alg, params->mode);
|
wpa_supplicant.c | [all...] |
wpa_supplicant.conf | 216 # auth_alg: list of allowed IEEE 802.11 authentication algorithms 659 # auth_alg=SHARED
|
/system/core/nexus/ |
WifiNetwork.cpp | 234 if (mSuppl->getNetworkVar(mNetid, "auth_alg", buffer, len)) { 236 LOGE("Error parsing auth_alg (%s)", strerror(errno)); 404 if (mSuppl->setNetworkVar(mNetid, "auth_alg", accum))
|
/system/wlan/ti/sta_dk_4_0_4_32/wpa_supplicant_lib/ |
driver_ti.c | 445 wpa_printf(MSG_DEBUG, "auth_alg: %d",myDrv->auth_alg); 447 if( (myDrv->auth_alg == AUTH_ALG_OPEN_SYSTEM) || 448 (myDrv->auth_alg == AUTH_ALG_LEAP) ) { 476 else if( myDrv->auth_alg == AUTH_ALG_SHARED_KEY ) { 479 if( myDrv->auth_alg == AUTH_ALG_LEAP ) { [all...] |
/external/wpa_supplicant_6/wpa_supplicant/src/drivers/ |
driver_nl80211.c | [all...] |
driver_wext.c | [all...] |
driver.h | 200 * auth_alg - Allowed authentication algorithms 203 int auth_alg; member in struct:wpa_driver_associate_params 629 * @auth_alg: bit field of AUTH_ALG_* 645 int (*set_auth_alg)(void *priv, int auth_alg); [all...] |
driver_test.c | 244 "group_suite=%d key_mgmt_suite=%d auth_alg=%d mode=%d", 247 params->auth_alg, params->mode); [all...] |
/external/wpa_supplicant_6/wpa_supplicant/src/common/ |
ieee802_11_defs.h | 245 le16 auth_alg; member in struct:ieee80211_mgmt::__anon6803::__anon6804
|
/hardware/ti/wlan/wl1271/wpa_supplicant_lib/ |
driver_ti.c | 1020 static int wpa_driver_tista_set_auth_alg(void *priv, int auth_alg) 1026 if (auth_alg & AUTH_ALG_OPEN_SYSTEM) 1028 if (auth_alg & AUTH_ALG_SHARED_KEY) 1030 if (auth_alg & AUTH_ALG_LEAP) [all...] |
/system/wlan/ti/wilink_6_1/wpa_supplicant_lib/ |
driver_ti.c | 1020 static int wpa_driver_tista_set_auth_alg(void *priv, int auth_alg) 1026 if (auth_alg & AUTH_ALG_OPEN_SYSTEM) 1028 if (auth_alg & AUTH_ALG_SHARED_KEY) 1030 if (auth_alg & AUTH_ALG_LEAP) [all...] |
/frameworks/base/wifi/java/android/net/wifi/ |
WifiConfiguration.java | 141 public static final String varName = "auth_alg";
|