aboutsummaryrefslogtreecommitdiffstats
path: root/wiretap/network_instruments.h
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2006-04-14 10:22:29 +0000
committerGuy Harris <guy@alum.mit.edu>2006-04-14 10:22:29 +0000
commit44aa78fe5e3dd8b7c0f70c3941af28c48ebdd4c7 (patch)
treed7206392bf8a45a2db3f86e5ecc3ba76ca8536b5 /wiretap/network_instruments.h
parentf8e8ccac5c1661feb7bfedcc4bf33639aa049791 (diff)
Skip non-data records. Fixes bug 767.
svn path=/trunk/; revision=17861
Diffstat (limited to 'wiretap/network_instruments.h')
-rw-r--r--wiretap/network_instruments.h17
1 files changed, 17 insertions, 0 deletions
diff --git a/wiretap/network_instruments.h b/wiretap/network_instruments.h
index 8c6a8bbb21..3d847d6d38 100644
--- a/wiretap/network_instruments.h
+++ b/wiretap/network_instruments.h
@@ -34,6 +34,23 @@ typedef struct capture_file_header
char extra_information_present;
} capture_file_header;
+#define TYPE_DATA_PACKET 0
+#define TYPE_EXPERT_INFORMATION_PACKET 1
+
+/*
+ * The Observer document indicates that the types of expert information
+ * packets are:
+ *
+ * Network Load (markers used by Expert Time Interval and What If
+ * analysis modes)
+ *
+ * Start/Stop Packet Capture marker frames (with time stamps when
+ * captures start and stop)
+ *
+ * Wireless Channel Change (markers showing what channel was being
+ * currently listened to)
+ */
+
typedef struct packet_entry_header
{
guint32 packet_magic;