diff options
author | Jouni Malinen <jouni.malinen@atheros.com> | 2008-12-31 17:52:05 +0200 |
---|---|---|
committer | Jouni Malinen <j@w1.fi> | 2008-12-31 17:52:05 +0200 |
commit | c3469d153456d1681a0b5aa201dcbfa2e1970e05 (patch) | |
tree | 728ff6fd05b8ba2d816cb2d178b5ababec554c53 | |
parent | df1e9601a473f470d0729b0d754847e511f3bdd5 (diff) | |
download | external_wpa_supplicant_8_ti-c3469d153456d1681a0b5aa201dcbfa2e1970e05.zip external_wpa_supplicant_8_ti-c3469d153456d1681a0b5aa201dcbfa2e1970e05.tar.gz external_wpa_supplicant_8_ti-c3469d153456d1681a0b5aa201dcbfa2e1970e05.tar.bz2 |
MFP: Fix SA Query Action Category
IEEE 802.11w/D7.0 incorrectly changed the Action Category from 8 to 7
when renaming Ping to SA Query. Category 7 is reserved for HT (IEEE
802.11n) and IEEE 802.11w will need to continue to use the category 8
that was allocated for it.
-rw-r--r-- | src/common/ieee802_11_defs.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/ieee802_11_defs.h b/src/common/ieee802_11_defs.h index 1a8abff..88e6ce6 100644 --- a/src/common/ieee802_11_defs.h +++ b/src/common/ieee802_11_defs.h @@ -214,7 +214,7 @@ #define WLAN_ACTION_BLOCK_ACK 3 #define WLAN_ACTION_RADIO_MEASUREMENT 5 #define WLAN_ACTION_FT 6 -#define WLAN_ACTION_SA_QUERY 7 +#define WLAN_ACTION_SA_QUERY 8 #define WLAN_ACTION_WMM 17 /* SA Query Action frame (IEEE 802.11w/D7.0, 7.4.9) */ |