aboutsummaryrefslogtreecommitdiff
path: root/sys/net80211
diff options
context:
space:
mode:
authorAdrian Chadd <adrian@FreeBSD.org>2020-06-05 04:04:47 +0000
committerAdrian Chadd <adrian@FreeBSD.org>2020-06-05 04:04:47 +0000
commit83fbae0ca6257ceb2b369ff1f22a69f8f14a26f2 (patch)
tree4b0c3f38bdf61eb5d2536a06b93a27557c6c2498 /sys/net80211
parentabab2155edb1e0088db657871a7b258559fc58a4 (diff)
downloadsrc-83fbae0ca6257ceb2b369ff1f22a69f8f14a26f2.tar.gz
src-83fbae0ca6257ceb2b369ff1f22a69f8f14a26f2.zip
[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.
Notes
Notes: svn path=/head/; revision=361819
Diffstat (limited to 'sys/net80211')
-rw-r--r--sys/net80211/ieee80211.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/sys/net80211/ieee80211.h b/sys/net80211/ieee80211.h
index 61389169bc47..62c40e263aba 100644
--- a/sys/net80211/ieee80211.h
+++ b/sys/net80211/ieee80211.h
@@ -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)