aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-ieee80211-radiotap.c
diff options
context:
space:
mode:
authorAshish Shukla <shukla.a@gmail.com>2016-06-24 15:59:39 -0700
committerGuy Harris <guy@alum.mit.edu>2016-06-27 02:14:53 +0000
commita4711f80c6d466cdd7eef376bf911699f55d35eb (patch)
tree779bb9c8b09383a92a546ff744de7b249b63afec /epan/dissectors/packet-ieee80211-radiotap.c
parent28048a97937bc0265333c47de6274e7d29b9fda8 (diff)
radiotap: Fix for the VHT 20MHz MCS 9 data rate not displayed
MCS 9 at 20 MHz is valid for 3 and 6 spatial streams. Changed the rate table to include rate (mbps) for VHT 20MHz MCS 9. Signed-off-by: Alexis La Goutte <alexis.lagoutte@gmail.com> Bug: 12558 Change-Id: Ia16ae545a5ac1779131e24e1f54a5659390cd321 Reviewed-on: https://code.wireshark.org/review/16146 Reviewed-by: Guy Harris <guy@alum.mit.edu>
Diffstat (limited to 'epan/dissectors/packet-ieee80211-radiotap.c')
-rw-r--r--epan/dissectors/packet-ieee80211-radiotap.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/dissectors/packet-ieee80211-radiotap.c b/epan/dissectors/packet-ieee80211-radiotap.c
index 8dcc0bdef7..b55e14456e 100644
--- a/epan/dissectors/packet-ieee80211-radiotap.c
+++ b/epan/dissectors/packet-ieee80211-radiotap.c
@@ -462,7 +462,7 @@ static const struct mcs_vht_info ieee80211_vhtinfo[MAX_MCS_VHT_INDEX+1] = {
},
/* MCS 9 */
{ "256-QAM", "5/6",
- { /* 20 Mhz */ { 0.0f, /* SGI */ 0.0f, },
+ { /* 20 Mhz */ { 86.7f, /* SGI */ 96.3f, },
/* 40 Mhz */ { 180.0f, /* SGI */ 200.0f, },
/* 80 Mhz */ { 390.0f, /* SGI */ 433.3f, },
/* 160 Mhz */ { 780.0f, /* SGI */ 866.7f, }