aboutsummaryrefslogtreecommitdiffstats
path: root/packet-wlancap.c
diff options
context:
space:
mode:
authorguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2004-01-29 10:58:28 +0000
committerguy <guy@f5534014-38df-0310-8fa8-9805f1628bb7>2004-01-29 10:58:28 +0000
commit2331b6d285f8ab8dabce90e5626ceab62c70057e (patch)
tree63e6888426dcc6922055eb790d8c24088af0f1a0 /packet-wlancap.c
parentfc33bb413c88ab780d181c573754a144d1be7951 (diff)
The DLT_ value 127 is being used for the BSD radio header, and the
current CVS libpcap uses 163 for the AVS radio header (127 was never used for the AVS radio header). Redo the Wiretap encapsulation values for that (and shuffle them to put the 802.11 Wiretap values together). git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@9904 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'packet-wlancap.c')
-rw-r--r--packet-wlancap.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/packet-wlancap.c b/packet-wlancap.c
index 51ceb98ab8..508c0de623 100644
--- a/packet-wlancap.c
+++ b/packet-wlancap.c
@@ -10,7 +10,7 @@
*
* By Solomon Peachy
*
- * $Id: packet-wlancap.c,v 1.3 2003/12/04 05:59:35 gram Exp $
+ * $Id: packet-wlancap.c,v 1.4 2004/01/29 10:58:28 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -280,5 +280,5 @@ proto_reg_handoff_wlancap(void)
wlancap_handle = create_dissector_handle(dissect_wlancap, proto_wlancap);
- dissector_add("wtap_encap", WTAP_ENCAP_WLAN_HEADER, wlancap_handle);
+ dissector_add("wtap_encap", WTAP_ENCAP_IEEE_802_11_WLAN_AVS, wlancap_handle);
}