diff options
author | Guy Harris <guy@alum.mit.edu> | 2001-11-28 07:11:11 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2001-11-28 07:11:11 +0000 |
commit | 56636f157abdc8472bcf43de4837d5af2058de16 (patch) | |
tree | bbe4c8fe37fb2677a6f3f3ab3313b96935381174 /packet-ieee80211.c | |
parent | c0b335070c3b8156aed2bf2bf85110ddf9c8275e (diff) | |
download | wireshark-56636f157abdc8472bcf43de4837d5af2058de16.tar.gz wireshark-56636f157abdc8472bcf43de4837d5af2058de16.tar.bz2 wireshark-56636f157abdc8472bcf43de4837d5af2058de16.zip |
Support for 802.11+Prism II monitor-mode link-layer headers, from
Tim Newsham.
Add in missing item for WTAP_ENCAP_CISCO_IOS in the Wiretap
encapsulation type table.
svn path=/trunk/; revision=4290
Diffstat (limited to 'packet-ieee80211.c')
-rw-r--r-- | packet-ieee80211.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/packet-ieee80211.c b/packet-ieee80211.c index c597d929dd..9c06249019 100644 --- a/packet-ieee80211.c +++ b/packet-ieee80211.c @@ -3,7 +3,7 @@ * Copyright 2000, Axis Communications AB * Inquiries/bugreports should be sent to Johan.Jorgensen@axis.com * - * $Id: packet-ieee80211.c,v 1.43 2001/11/26 05:13:11 hagbard Exp $ + * $Id: packet-ieee80211.c,v 1.44 2001/11/28 07:11:07 guy Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs <gerald@ethereal.com> @@ -1893,6 +1893,8 @@ proto_register_wlan (void) "802.11 MGT", "wlan_mgt"); proto_register_field_array (proto_wlan_mgt, ff, array_length (ff)); proto_register_subtree_array (tree_array, array_length (tree_array)); + + register_dissector("wlan", dissect_ieee80211, proto_wlan); } void |