aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard Sharpe <realrichardsharpe@gmail.com>2020-07-05 09:58:15 -0400
committerAlexis La Goutte <alexis.lagoutte@gmail.com>2020-07-06 09:06:48 +0000
commitb1ec5ddff6035bcc6c6eafae234f029e4871f123 (patch)
tree239ca661e7c62eb72f8c4b3165aa35b2d6389ba1
parent95c56f5b72220b2f08ea2ef70b914f7a2b5ff4cc (diff)
ieee80211: Remove duplicate and erroneous entries in the status code table.
Also, the status code 125 is duplicated. This mistake was probably introduced from Draft P802.11Revmd_D3.0.pdf. I have commented out that status code while I get clarification on the real value. Change-Id: Id41e1da953a28ca6b098f6c96d6410dff04dc6d7 Reviewed-on: https://code.wireshark.org/review/37708 Petri-Dish: Richard Sharpe <realrichardsharpe@gmail.com> Tested-by: Petri Dish Buildbot Reviewed-by: Alexis La Goutte <alexis.lagoutte@gmail.com>
-rw-r--r--epan/dissectors/packet-ieee80211.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/epan/dissectors/packet-ieee80211.c b/epan/dissectors/packet-ieee80211.c
index 30ef5cbf41..a5d348a76a 100644
--- a/epan/dissectors/packet-ieee80211.c
+++ b/epan/dissectors/packet-ieee80211.c
@@ -940,11 +940,9 @@ static const value_string ieee80211_status_code[] = {
{ 123, "Authentication rejected because the password identifier is unknown" },
{ 124, "Requested TCLAS processing has been terminated by the AP due to insufficient QoS capacity" },
{ 125, "Requested TCLAS processing has been terminated by the AP due to conflict with higher layer QoS policies" },
- { 125, "Request denied because source address of request is inconsistent with local MAC address policy" },
+ /*{ 125, "Request denied because source address of request is inconsistent with local MAC address policy" },*/
{ 126, "SAE authentication uses direct hashing, instead of looping, to obtain the PWE" },
{ 127, "Reserved"},
- { 128, "Requested TCLAS processing has been terminated by the AP due to insufficient QoS capacity" },
- { 129, "Requested TCLAS processing has been terminated by the AP due to conflict with higher layer QoS policies" },
{ 0, NULL}
};
value_string_ext ieee80211_status_code_ext = VALUE_STRING_EXT_INIT(ieee80211_status_code);