aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-lwapp.c
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2014-05-29 10:56:46 -0700
committerGuy Harris <guy@alum.mit.edu>2014-05-29 17:57:14 +0000
commit21a1208735315a3a67e8a66ae6b5cb2776be6d60 (patch)
tree807403b835dc9b64e636128ad39397e3c8b358f6 /epan/dissectors/packet-lwapp.c
parent8b6c4e71ad5dec0318dc9fac9fcd710a25b5e449 (diff)
Introduce 802.11 dissectors with wired-in "FCS present" indications.
For a number of protocols that encapsulate 802.11 frames inside packets, whether the frame includes an FCS or not is specified by the protocol, not by whether the link-layer frame carrying the packets *itself* includes an FCS. As we've done with Ethernet, add "_withfcs" and "_withoutfcs" dissectors, which *don't* check the pseudo-header FCS length indication, and call those, rather than dissectors that check the pseudo-header length indication, from the dissectors for those protocols. Change-Id: Ib8c8ecdd872e1782fdfc66e7573415d91911a62e Reviewed-on: https://code.wireshark.org/review/1866 Reviewed-by: Guy Harris <guy@alum.mit.edu>
Diffstat (limited to 'epan/dissectors/packet-lwapp.c')
-rw-r--r--epan/dissectors/packet-lwapp.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/epan/dissectors/packet-lwapp.c b/epan/dissectors/packet-lwapp.c
index 50ca5e4a02..5ff54d1355 100644
--- a/epan/dissectors/packet-lwapp.c
+++ b/epan/dissectors/packet-lwapp.c
@@ -1,7 +1,7 @@
/* packet-lwapp.c
*
* Routines for LWAPP encapsulated packet disassembly
- * draft-ohara-capwap-lwapp-N (the current draft is 0)
+ * RFC 5412
*
* Copyright (c) 2003 by David Frascone <dave@frascone.com>
*
@@ -547,7 +547,7 @@ proto_reg_handoff_lwapp(void)
* Get handles for the Ethernet and wireless dissectors.
*/
eth_withoutfcs_handle = find_dissector("eth_withoutfcs");
- wlan_handle = find_dissector("wlan");
+ wlan_handle = find_dissector("wlan_withoutfcs");
wlan_bsfc_handle = find_dissector("wlan_bsfc");
data_handle = find_dissector("data");