aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors
diff options
context:
space:
mode:
authorRichard Sharpe <realrichardsharpe@gmail.com>2019-12-18 00:03:31 -0500
committerAnders Broman <a.broman58@gmail.com>2019-12-18 05:31:56 +0000
commit53a6c26023342b5c288769a4f39092079816debe (patch)
tree1ec1465f78cbac5d31a3166896df821d6b6c540f /epan/dissectors
parentd614ade782b9381573e1770e0d172db0decb56a5 (diff)
ieee802.11: Support the latest band id values and fix MHz.
Change-Id: I4ef686f5dc9a43f94db34cab0f7fe466ef271585 Reviewed-on: https://code.wireshark.org/review/35482 Reviewed-by: Richard Sharpe <realrichardsharpe@gmail.com> Petri-Dish: Richard Sharpe <realrichardsharpe@gmail.com> Tested-by: Petri Dish Buildbot Reviewed-by: Anders Broman <a.broman58@gmail.com>
Diffstat (limited to 'epan/dissectors')
-rw-r--r--epan/dissectors/packet-ieee80211.c11
1 files changed, 6 insertions, 5 deletions
diff --git a/epan/dissectors/packet-ieee80211.c b/epan/dissectors/packet-ieee80211.c
index be27b182b4..108c2dda13 100644
--- a/epan/dissectors/packet-ieee80211.c
+++ b/epan/dissectors/packet-ieee80211.c
@@ -2784,11 +2784,12 @@ static const value_string bss_type[] = {
static const value_string band_id[] = {
{0x0, "TV white spaces"},
- {0x1, "Sub-1 GHZ (excluding TV white spaces)"},
- {0x2, "2.4 GHZ"},
- {0x3, "3.6 GHZ"},
- {0x4, "4.9 and 5 GHZ"},
- {0x5, "60 GHZ"},
+ {0x1, "Sub-1 GHz (excluding TV white spaces)"},
+ {0x2, "2.4 GHz"},
+ {0x3, "3.6 GHz"},
+ {0x4, "4.9 and 5 GHz"},
+ {0x5, "60 GHz"},
+ {0x6, "45 GHz"},
{0, NULL}
};