* 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. */
| 1709 | * changes such as for channel width change. |
| 1710 | */ |
| 1711 | void |
| 1712 | ieee80211_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. |
no test coverage detected