git: 50982d26e45b - main - net80211: add MMIC element ID (for management frame protected group action frames)
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Fri, 13 Sep 2024 22:32:49 UTC
The branch main has been updated by adrian:
URL: https://cgit.FreeBSD.org/src/commit/?id=50982d26e45ba36dceee471a5a6bed4a2e5f171b
commit 50982d26e45ba36dceee471a5a6bed4a2e5f171b
Author: Adrian Chadd <adrian@FreeBSD.org>
AuthorDate: 2024-09-01 16:40:30 +0000
Commit: Adrian Chadd <adrian@FreeBSD.org>
CommitDate: 2024-09-13 21:13:58 +0000
net80211: add MMIC element ID (for management frame protected group action frames)
* add the MMIC element ID
* add a comment showing the source of this table from the 802.11-2016
specification.
Differential Revision: https://reviews.freebsd.org/D46505
---
sys/net80211/ieee80211.h | 3 +++
1 file changed, 3 insertions(+)
diff --git a/sys/net80211/ieee80211.h b/sys/net80211/ieee80211.h
index 2e07c875ae01..4203952367ca 100644
--- a/sys/net80211/ieee80211.h
+++ b/sys/net80211/ieee80211.h
@@ -1017,6 +1017,8 @@ struct ieee80211_ie_vht_txpwrenv {
/*
* Management information element payloads.
+ *
+ * 802.11-2016 Table 9-77 (Element IDs).
*/
enum {
@@ -1058,6 +1060,7 @@ enum {
IEEE80211_ELEMID_COEX_2040 = 72,
IEEE80211_ELEMID_INTOL_CHN_REPORT = 73,
IEEE80211_ELEMID_OVERLAP_BSS_SCAN_PARAM = 74,
+ IEEE80211_ELEMID_MMIC = 76,
IEEE80211_ELEMID_TSF_REQ = 91,
IEEE80211_ELEMID_TSF_RESP = 92,
IEEE80211_ELEMID_WNM_SLEEP_MODE = 93,