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

Function ieee80211_parse_htinfo

freebsd/net80211/ieee80211_ht.c:1711–1717  ·  view source on GitHub ↗

* Parse an 802.11n HT info ie and save useful information * to the node state. Note this does not effect any state * changes such as for channel width change. */

Source from the content-addressed store, hash-verified

1709 * changes such as for channel width change.
1710 */
1711void
1712ieee80211_parse_htinfo(struct ieee80211_node *ni, const uint8_t *ie)
1713{
1714 if (ie[0] == IEEE80211_ELEMID_VENDOR)
1715 ie += 4;
1716 htinfo_parse(ni, (const struct ieee80211_ie_htinfo *) ie);
1717}
1718
1719/*
1720 * Handle 11n/11ac channel switch.

Callers 2

ieee80211_sta_joinFunction · 0.85
ieee80211_init_neighborFunction · 0.85

Calls 1

htinfo_parseFunction · 0.85

Tested by

no test coverage detected