MCPcopy Create free account
hub / github.com/F-Stack/f-stack / match_ssid

Function match_ssid

freebsd/net80211/ieee80211_scan_sta.c:984–995  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

982}
983
984static int
985match_ssid(const uint8_t *ie,
986 int nssid, const struct ieee80211_scan_ssid ssids[])
987{
988 int i;
989
990 for (i = 0; i < nssid; i++) {
991 if (match_id(ie, ssids[i].ssid, ssids[i].len))
992 return 1;
993 }
994 return 0;
995}
996
997#ifdef IEEE80211_SUPPORT_TDMA
998static int

Callers 1

match_bssFunction · 0.70

Calls 1

match_idFunction · 0.85

Tested by

no test coverage detected