1STRUCT IEEE80211_STA(9) Device registration STRUCT IEEE80211_STA(9)
2
3
4
6 struct_ieee80211_sta_ht_cap - STA's HT capabilities
7
9 struct ieee80211_sta_ht_cap {
10 u16 cap;
11 bool ht_supported;
12 u8 ampdu_factor;
13 u8 ampdu_density;
14 struct ieee80211_mcs_info mcs;
15 };
16
18 cap
19 HT capabilities map as described in 802.11n spec
20
21 ht_supported
22 is HT supported by the STA
23
24 ampdu_factor
25 Maximum A-MPDU length factor
26
27 ampdu_density
28 Minimum A-MPDU spacing
29
30 mcs
31 Supported MCS rates
32
34 This structure describes most essential parameters needed to describe
35 802.11n HT capabilities for an STA.
36
38 Johannes Berg <johannes@sipsolutions.net>
39 Author.
40
42Kernel Hackers Manual 3.10 June 2019 STRUCT IEEE80211_STA(9)