/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/ap/ |
H A D | ieee802_11_shared.c | 531 if (!is_zero_ether_addr(hapd->conf->hessid)) { in hostapd_eid_interworking() 532 os_memcpy(pos, hapd->conf->hessid, ETH_ALEN); in hostapd_eid_interworking() 919 u8 * hostapd_eid_fils_indic(struct hostapd_data *hapd, u8 *eid, int hessid) in hostapd_eid_fils_indic() argument 946 if (hessid && !is_zero_ether_addr(hapd->conf->hessid)) in hostapd_eid_fils_indic() 962 if (hessid && !is_zero_ether_addr(hapd->conf->hessid)) { in hostapd_eid_fils_indic() 963 os_memcpy(pos, hapd->conf->hessid, ETH_ALEN); in hostapd_eid_fils_indic()
|
H A D | beacon.c | 1014 const u8 *hessid; in handle_probe_req() local 1016 hessid = elems.interworking + 1; in handle_probe_req() 1018 hessid = elems.interworking + 1 + 2; in handle_probe_req() 1019 if (!is_broadcast_ether_addr(hessid) && in handle_probe_req() 1020 os_memcmp(hessid, hapd->conf->hessid, ETH_ALEN) != 0) { in handle_probe_req() 1024 MAC2STR_SEC(mgmt->sa), MAC2STR_SEC(hessid)); in handle_probe_req() 1728 !is_zero_ether_addr(hapd->conf->hessid)) in ieee802_11_build_ap_params() 1729 params->hessid = hapd->conf->hessid; in ieee802_11_build_ap_params() [all...] |
H A D | ieee802_11.h | 163 u8 * hostapd_eid_fils_indic(struct hostapd_data *hapd, u8 *eid, int hessid);
|
H A D | ap_config.h | 558 u8 hessid[ETH_ALEN]; member
|
H A D | ieee802_1x.c | 591 !is_zero_ether_addr(hapd->conf->hessid)) { in add_common_radius_attr() 593 MAC2STR(hapd->conf->hessid)); in add_common_radius_attr()
|
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/ap/ |
H A D | ieee802_11_shared.c | 515 if (!is_zero_ether_addr(hapd->conf->hessid)) { in hostapd_eid_interworking() 516 os_memcpy(pos, hapd->conf->hessid, ETH_ALEN); in hostapd_eid_interworking() 874 u8 * hostapd_eid_fils_indic(struct hostapd_data *hapd, u8 *eid, int hessid) in hostapd_eid_fils_indic() argument 901 if (hessid && !is_zero_ether_addr(hapd->conf->hessid)) in hostapd_eid_fils_indic() 917 if (hessid && !is_zero_ether_addr(hapd->conf->hessid)) { in hostapd_eid_fils_indic() 918 os_memcpy(pos, hapd->conf->hessid, ETH_ALEN); in hostapd_eid_fils_indic()
|
H A D | beacon.c | 899 const u8 *hessid; in handle_probe_req() local 901 hessid = elems.interworking + 1; in handle_probe_req() 903 hessid = elems.interworking + 1 + 2; in handle_probe_req() 904 if (!is_broadcast_ether_addr(hessid) && in handle_probe_req() 905 os_memcmp(hessid, hapd->conf->hessid, ETH_ALEN) != 0) { in handle_probe_req() 909 MAC2STR(mgmt->sa), MAC2STR(hessid)); in handle_probe_req() 1353 !is_zero_ether_addr(hapd->conf->hessid)) in ieee802_11_build_ap_params() 1354 params->hessid = hapd->conf->hessid; in ieee802_11_build_ap_params() [all...] |
H A D | ieee802_11.h | 158 u8 * hostapd_eid_fils_indic(struct hostapd_data *hapd, u8 *eid, int hessid);
|
H A D | ap_config.h | 548 u8 hessid[ETH_ALEN]; member
|
/third_party/wpa_supplicant/wpa_supplicant-2.9/wpa_supplicant/ |
H A D | bss.c | 39 os_memset(bss->hessid, 0, ETH_ALEN); in wpa_bss_set_hessid() 43 os_memcpy(bss->hessid, ie + 3, ETH_ALEN); in wpa_bss_set_hessid() 45 os_memcpy(bss->hessid, ie + 5, ETH_ALEN); in wpa_bss_set_hessid() 460 if (!is_zero_ether_addr(bss->hessid)) in wpa_bss_add() 462 MAC2STR(bss->hessid)); in wpa_bss_add()
|
H A D | bss.h | 80 u8 hessid[ETH_ALEN]; member
|
H A D | config.h | 976 * hessid - Homogenous ESS identifier 982 u8 hessid[ETH_ALEN]; member
|
H A D | interworking.c | 2595 if (is_zero_ether_addr(bss->hessid)) in interworking_match_anqp_info() 2610 if (os_memcmp(bss->hessid, other->hessid, ETH_ALEN) != 0) in interworking_match_anqp_info() 2676 MAC2STR(bss->bssid), MAC2STR(bss->hessid)); in interworking_next_anqp_fetch()
|
H A D | scan.c | 459 wpabuf_put_u8(buf, is_zero_ether_addr(wpa_s->conf->hessid) ? 1 : in wpas_add_interworking_elements() 463 if (!is_zero_ether_addr(wpa_s->conf->hessid)) in wpas_add_interworking_elements() 464 wpabuf_put_data(buf, wpa_s->conf->hessid, ETH_ALEN); in wpas_add_interworking_elements()
|
H A D | config_file.c | 1335 if (!is_zero_ether_addr(config->hessid)) in wpa_config_write_global() 1336 fprintf(f, "hessid=" MACSTR "\n", MAC2STR(config->hessid)); in wpa_config_write_global()
|
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/wpa_supplicant/ |
H A D | bss.c | 27 os_memset(bss->hessid, 0, ETH_ALEN); in wpa_bss_set_hessid() 31 os_memcpy(bss->hessid, ie + 3, ETH_ALEN); in wpa_bss_set_hessid() 33 os_memcpy(bss->hessid, ie + 5, ETH_ALEN); in wpa_bss_set_hessid() 514 if (!is_zero_ether_addr(bss->hessid)) in wpa_bss_add() 516 MAC2STR(bss->hessid)); in wpa_bss_add()
|
H A D | bss.h | 92 u8 hessid[ETH_ALEN]; member
|
H A D | config.h | 1035 * hessid - Homogeneous ESS identifier 1041 u8 hessid[ETH_ALEN]; member
|
H A D | interworking.c | 2643 if (is_zero_ether_addr(bss->hessid)) in interworking_match_anqp_info() 2658 if (os_memcmp(bss->hessid, other->hessid, ETH_ALEN) != 0) in interworking_match_anqp_info() 2727 MAC2STR(bss->bssid), MAC2STR(bss->hessid)); in interworking_next_anqp_fetch() 2730 MAC2STR_SEC(bss->bssid), MAC2STR_SEC(bss->hessid)); in interworking_next_anqp_fetch()
|
H A D | scan.c | 530 wpabuf_put_u8(buf, is_zero_ether_addr(wpa_s->conf->hessid) ? 1 : in wpas_add_interworking_elements() 534 if (!is_zero_ether_addr(wpa_s->conf->hessid)) in wpas_add_interworking_elements() 535 wpabuf_put_data(buf, wpa_s->conf->hessid, ETH_ALEN); in wpas_add_interworking_elements()
|
H A D | config_file.c | 1361 if (!is_zero_ether_addr(config->hessid)) in wpa_config_write_global() 1362 fprintf(f, "hessid=" MACSTR "\n", MAC2STR(config->hessid)); in wpa_config_write_global()
|
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/hs20/client/ |
H A D | osu_client.c | 1115 char *ssid, *hessid; in set_pps_cred_home_sp_network_id() local 1128 hessid = hessid_node ? xml_node_get_text(ctx->xml, hessid_node) : NULL; in set_pps_cred_home_sp_network_id() 1131 if (hessid) in set_pps_cred_home_sp_network_id() 1133 anonymize_common(hessid)); in set_pps_cred_home_sp_network_id() 1137 xml_node_get_text_free(ctx->xml, hessid); in set_pps_cred_home_sp_network_id()
|
/third_party/wpa_supplicant/wpa_supplicant-2.9/hs20/client/ |
H A D | osu_client.c | 1116 char *ssid, *hessid; in set_pps_cred_home_sp_network_id() local 1129 hessid = hessid_node ? xml_node_get_text(ctx->xml, hessid_node) : NULL; in set_pps_cred_home_sp_network_id() 1132 if (hessid) in set_pps_cred_home_sp_network_id() 1134 hessid); in set_pps_cred_home_sp_network_id() 1139 xml_node_get_text_free(ctx->xml, hessid); in set_pps_cred_home_sp_network_id()
|
/third_party/wpa_supplicant/wpa_supplicant-2.9/src/drivers/ |
H A D | driver_atheros.c | 1943 if (params->hessid) in atheros_set_ap() 1945 MAC2STR(params->hessid)); in atheros_set_ap()
|
/third_party/wpa_supplicant/wpa_supplicant-2.9_standard/src/drivers/ |
H A D | driver_atheros.c | 1932 if (params->hessid) in atheros_set_ap() 1934 MAC2STR_SEC(params->hessid)); in atheros_set_ap()
|