HomeSort by: relevance | last modified time | path
    Searched refs:hessid (Results 1 - 16 of 16) sorted by relevancy

  /src/external/bsd/wpa/dist/src/ap/
ieee802_11_shared.c 571 if (!is_zero_ether_addr(hapd->conf->hessid)) {
572 os_memcpy(pos, hapd->conf->hessid, ETH_ALEN);
965 u8 * hostapd_eid_fils_indic(struct hostapd_data *hapd, u8 *eid, int hessid)
992 if (hessid && !is_zero_ether_addr(hapd->conf->hessid))
993 fils_info |= BIT(8); /* HESSID Included */
1008 if (hessid && !is_zero_ether_addr(hapd->conf->hessid)) {
1009 os_memcpy(pos, hapd->conf->hessid, ETH_ALEN);
beacon.c 1519 const u8 *hessid; local
1521 hessid = elems.interworking + 1;
1523 hessid = elems.interworking + 1 + 2;
1524 if (!is_broadcast_ether_addr(hessid) &&
1525 !ether_addr_equal(hessid, hapd->conf->hessid)) {
1527 " for mismatching HESSID " MACSTR
1529 MAC2STR(mgmt->sa), MAC2STR(hessid));
2488 !is_zero_ether_addr(hapd->conf->hessid))
2489 params->hessid = hapd->conf->hessid
    [all...]
ieee802_11.h 193 u8 * hostapd_eid_fils_indic(struct hostapd_data *hapd, u8 *eid, int hessid);
ap_config.h 574 u8 hessid[ETH_ALEN]; member in struct:hostapd_bss_config
ieee802_1x.c 656 !is_zero_ether_addr(hapd->conf->hessid)) {
658 MAC2STR(hapd->conf->hessid));
664 wpa_printf(MSG_ERROR, "Could not add WLAN-HESSID");
  /src/external/bsd/wpa/dist/wpa_supplicant/
bss.h 91 /** HESSID */
92 u8 hessid[ETH_ALEN]; member in struct:wpa_bss
config.h 1079 * hessid - Homogeneous ESS identifier
1085 u8 hessid[ETH_ALEN]; member in struct:wpa_config
bss.c 29 os_memset(bss->hessid, 0, ETH_ALEN);
33 os_memcpy(bss->hessid, ie + 3, ETH_ALEN);
35 os_memcpy(bss->hessid, ie + 5, ETH_ALEN);
520 if (!is_zero_ether_addr(bss->hessid))
521 ret = os_snprintf(pos, end - pos, " HESSID " MACSTR,
522 MAC2STR(bss->hessid));
config_file.c 1345 if (!is_zero_ether_addr(config->hessid))
1346 fprintf(f, "hessid=" MACSTR "\n", MAC2STR(config->hessid));
interworking.c 2654 if (is_zero_ether_addr(bss->hessid))
2669 if (!ether_addr_equal(bss->hessid, other->hessid))
2734 MACSTR " (HESSID " MACSTR ")",
2735 MAC2STR(bss->bssid), MAC2STR(bss->hessid));
scan.c 580 wpabuf_put_u8(buf, is_zero_ether_addr(wpa_s->conf->hessid) ? 1 :
584 if (!is_zero_ether_addr(wpa_s->conf->hessid))
585 wpabuf_put_data(buf, wpa_s->conf->hessid, ETH_ALEN);
config.c 5208 if (hwaddr_aton2(pos, config->hessid) < 0) {
5209 wpa_printf(MSG_ERROR, "Line %d: Invalid hessid '%s'",
5503 { FUNC(hessid), 0 },
  /src/external/bsd/wpa/dist/hs20/client/
osu_client.c 1116 char *ssid, *hessid; local
1124 hessid_node = get_node(ctx->xml, node, "HESSID");
1129 hessid = hessid_node ? xml_node_get_text(ctx->xml, hessid_node) : NULL;
1132 if (hessid)
1133 wpa_printf(MSG_INFO, "- HomeSP/NetworkID/<X+>/HESSID = %s",
1134 hessid);
1139 xml_node_get_text_free(ctx->xml, hessid);
  /src/external/bsd/wpa/dist/src/drivers/
driver_atheros.c 1933 if (params->hessid)
1934 wpa_printf(MSG_DEBUG, "atheros: HESSID " MACSTR,
1935 MAC2STR(params->hessid));
driver.h 1580 * hessid - Homogeneous ESS identifier or %NULL if not set
1582 const u8 *hessid; member in struct:wpa_driver_ap_params
  /src/external/bsd/wpa/dist/hostapd/
config_file.c 4184 } else if (os_strcmp(buf, "hessid") == 0) {
4185 if (hwaddr_aton(pos, bss->hessid)) {
4186 wpa_printf(MSG_ERROR, "Line %d: invalid hessid", line);

Completed in 51 milliseconds