aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-peekremote.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2015-06-26 11:28:25 -0700
committerGuy Harris <guy@alum.mit.edu>2015-06-26 18:29:08 +0000
commit78adf178505295765111caf1107f5d8c9d6ce8ea (patch)
tree0e3e773fb0b6fc39bed57c8b28aad2352d50325c /epan/dissectors/packet-peekremote.c
parent51d2eefc9532094f385b604c692ef24f09706f64 (diff)
Fix handling of 11ac radio metadata.
Add more fields to the metadata to handle everything radiotap has, and show them. Call the FEC type field just "FEC", and have it be an integer field with 0 meaning BCC and 1 meaning LDPC, rather than a Boolean. 11ac doesn't have *an* MCS, it can have up to 4, one per user. Label the 11ac bandwidth values the same way we do in the radiotap dissector. Change-Id: I2c2415baff3e5d68d49dda497980e8271d26b1f6 Reviewed-on: https://code.wireshark.org/review/9176 Reviewed-by: Guy Harris <guy@alum.mit.edu>
Diffstat (limited to 'epan/dissectors/packet-peekremote.c')
-rw-r--r--epan/dissectors/packet-peekremote.c2
1 files changed, 0 insertions, 2 deletions
diff --git a/epan/dissectors/packet-peekremote.c b/epan/dissectors/packet-peekremote.c
index 41612b55ab..4684618b03 100644
--- a/epan/dissectors/packet-peekremote.c
+++ b/epan/dissectors/packet-peekremote.c
@@ -473,8 +473,6 @@ dissect_peekremote_new(tvbuff_t *tvb, packet_info *pinfo, proto_tree *tree, void
extflags = tvb_get_ntohl(tvb, offset);
if (extflags & EXT_FLAG_802_11ac) {
phdr.phy = PHDR_802_11_PHY_11AC;
- phdr.phy_info.info_11ac.presence_flags = PHDR_802_11AC_HAS_MCS_INDEX;
- phdr.phy_info.info_11ac.mcs_index = mcs_index;
} else {
phdr.phy = PHDR_802_11_PHY_11N;
phdr.phy_info.info_11n.presence_flags = PHDR_802_11N_HAS_MCS_INDEX;