aboutsummaryrefslogtreecommitdiffstats
path: root/packet-ieee80211.h
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2003-09-23 02:35:59 +0000
committerGuy Harris <guy@alum.mit.edu>2003-09-23 02:35:59 +0000
commit40bf435a5bdae2832f07fe63ecba1bc3955a521f (patch)
tree1686a92fbea781be78021383a459643324624623 /packet-ieee80211.h
parent6ac634b8f0b12f1c232e0924c42c510b6917d712 (diff)
Get rid of some unnecessary includes.
Instead of using "dissect_vendor_specific_ie()" to dissect the WPA key data, turn the code to dissect a collection of 802.11 tagged parameters into a routine, use that routine when dissecting 802.11 management frames, and also use it to dissect the key data. svn path=/trunk/; revision=8513
Diffstat (limited to 'packet-ieee80211.h')
-rw-r--r--packet-ieee80211.h5
1 files changed, 4 insertions, 1 deletions
diff --git a/packet-ieee80211.h b/packet-ieee80211.h
index ec8b299f57..8441eb9e5c 100644
--- a/packet-ieee80211.h
+++ b/packet-ieee80211.h
@@ -4,7 +4,7 @@
* Copyright 2000, Axis Communications AB
* Inquiries/bugreports should be sent to Johan.Jorgensen@axis.com
*
- * $Id: packet-ieee80211.h,v 1.7 2002/08/28 21:00:17 jmayer Exp $
+ * $Id: packet-ieee80211.h,v 1.8 2003/09/23 02:35:59 guy Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@ethereal.com>
@@ -29,3 +29,6 @@
void capture_ieee80211 (const guchar *, int, int, packet_counts *);
void capture_ieee80211_fixed (const guchar *, int, int, packet_counts *);
+
+void ieee_80211_add_tagged_parameters (tvbuff_t * tvb, int offset,
+ proto_tree * tree, int tagged_parameters_len);