[net80211] Add field definition for A-MSDU inside A-MPDU.

Now that I have A-MSDU and A-MPDU coexisting together, we need to actually
announce if (a) it's permitted and (b) figure out if we should use it
when transmitting.

This just adds the field; it doesn't yet include it in ADDBA exchanges.
This commit is contained in:
Adrian Chadd 2020-06-05 04:04:47 +00:00
parent abab2155ed
commit 83fbae0ca6
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=361819

View File

@ -430,6 +430,8 @@ struct ieee80211_action_ht_mimopowersave {
#define IEEE80211_BAPS_TID_S 2
#define IEEE80211_BAPS_POLICY 0x0002 /* block ack policy */
#define IEEE80211_BAPS_POLICY_S 1
#define IEEE80211_BAPS_AMSDU 0x0001 /* A-MSDU permitted */
#define IEEE80211_BAPS_AMSDU_S 0
#define IEEE80211_BAPS_POLICY_DELAYED (0<<IEEE80211_BAPS_POLICY_S)
#define IEEE80211_BAPS_POLICY_IMMEDIATE (1<<IEEE80211_BAPS_POLICY_S)