Home | History | Annotate | Download | only in net80211

Lines Matching refs:ssid

812  * has the station's desired SSID.  The "oldest" 802.11 network
1012 * Preserve SSID, WPA, and WME ie's so the bss node is
1320 /* XXX ap beaconing multiple ssid w/ same bssid */
1632 const u_int8_t *ssid)
1642 if (ssid[1] == 0 || best->ni_esslen == 0)
1644 else if (ssid[1] == best->ni_esslen &&
1645 memcmp(ssid + 2, best->ni_essid, ssid[1]) == 0)
1657 if (ssid[1] == 0 || ni->ni_esslen == 0)
1659 else if (ssid[1] == ni->ni_esslen &&
1660 memcmp(ssid + 2, ni->ni_essid, ssid[1]) == 0)
1676 * Like find but search based on the ssid too.
1681 const u_int8_t *macaddr, u_int ssidlen, const u_int8_t *ssid,
1685 const u_int8_t *macaddr, u_int ssidlen, const u_int8_t *ssid)
1688 #define MATCH_SSID(ni, ssid, ssidlen) \
1689 (ni->ni_esslen == ssidlen && memcmp(ni->ni_essid, ssid, ssidlen) == 0)
1699 * A mac address that is all zero means match only the ssid;
1704 if (MATCH_SSID(ni, ssid, ssidlen))
1711 MATCH_SSID(ni, ssid, ssidlen))