Home
last modified time | relevance | path

Searched refs:g_wpa_anonymous_identity (Results 1 – 3 of 3) sorted by relevance

/hal_espressif-latest/components/wpa_supplicant/esp_supplicant/src/
Desp_eap_client.c961 if (g_wpa_anonymous_identity) { in esp_eap_client_set_identity()
962 os_free(g_wpa_anonymous_identity); in esp_eap_client_set_identity()
963 g_wpa_anonymous_identity = NULL; in esp_eap_client_set_identity()
966 g_wpa_anonymous_identity = (u8 *)os_zalloc(len); in esp_eap_client_set_identity()
967 if (g_wpa_anonymous_identity == NULL) { in esp_eap_client_set_identity()
971 os_memcpy(g_wpa_anonymous_identity, identity, len); in esp_eap_client_set_identity()
979 if (g_wpa_anonymous_identity) { in esp_eap_client_clear_identity()
980 os_free(g_wpa_anonymous_identity); in esp_eap_client_clear_identity()
983 g_wpa_anonymous_identity = NULL; in esp_eap_client_clear_identity()
/hal_espressif-latest/components/wpa_supplicant/src/eap_peer/
Deap.h22 extern u8 *g_wpa_anonymous_identity;
Deap.c45 u8 *g_wpa_anonymous_identity; variable
533 if (g_wpa_anonymous_identity && g_wpa_anonymous_identity_len > 0) { in eap_peer_config_init()
538 … os_memcpy(sm->config.anonymous_identity, g_wpa_anonymous_identity, g_wpa_anonymous_identity_len); in eap_peer_config_init()