aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-ieee80211.h
diff options
context:
space:
mode:
authorStig Bjørlykke <stig@bjorlykke.org>2008-02-12 14:17:18 +0000
committerStig Bjørlykke <stig@bjorlykke.org>2008-02-12 14:17:18 +0000
commita356f552b43bbdedde3c04227d44d4f80d7e20eb (patch)
treed632574f235268d4d5745b2d6dac4baa3e3244cb /epan/dissectors/packet-ieee80211.h
parent5e893a8b1c6707a8526e9a60168e5dbebe567b05 (diff)
Added WLAN Traffic Statistics dialog.
svn path=/trunk/; revision=24310
Diffstat (limited to 'epan/dissectors/packet-ieee80211.h')
-rw-r--r--epan/dissectors/packet-ieee80211.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/epan/dissectors/packet-ieee80211.h b/epan/dissectors/packet-ieee80211.h
index b75d739975..faf24bf3ff 100644
--- a/epan/dissectors/packet-ieee80211.h
+++ b/epan/dissectors/packet-ieee80211.h
@@ -38,9 +38,19 @@ void capture_wlancap(const guchar *, int, int, packet_counts *);
void ieee_80211_add_tagged_parameters (tvbuff_t * tvb, int offset,
packet_info * pinfo, proto_tree * tree, int tagged_parameters_len);
+#define MAX_SSID_LEN 32
+#define MAX_PROTECT_LEN 10
+
+struct _wlan_stats {
+ guint8 channel;
+ guchar ssid[MAX_SSID_LEN];
+ guchar protection[MAX_PROTECT_LEN];
+};
+
typedef struct _wlan_hdr {
address bssid;
address src;
address dst;
guint16 type;
+ struct _wlan_stats stats;
} wlan_hdr;