diff options
author | Guy Harris <guy@alum.mit.edu> | 2002-10-14 17:33:50 +0000 |
---|---|---|
committer | Guy Harris <guy@alum.mit.edu> | 2002-10-14 17:33:50 +0000 |
commit | 63d65a3f69beb6eb121fe7c9cf746805a1f05f0c (patch) | |
tree | 1ab71bc103c903f0fbff7acd9b392363e72ba524 /epan/packet.h | |
parent | a236ba90d0ccdedeb2a669e4adf071ef3d547831 (diff) | |
download | wireshark-63d65a3f69beb6eb121fe7c9cf746805a1f05f0c.tar.gz wireshark-63d65a3f69beb6eb121fe7c9cf746805a1f05f0c.tar.bz2 wireshark-63d65a3f69beb6eb121fe7c9cf746805a1f05f0c.zip |
From Ulf Lamping: count ARP packets in capture progress dialog box.
svn path=/trunk/; revision=6416
Diffstat (limited to 'epan/packet.h')
-rw-r--r-- | epan/packet.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/epan/packet.h b/epan/packet.h index 9cd617520c..29fb1ab75c 100644 --- a/epan/packet.h +++ b/epan/packet.h @@ -1,7 +1,7 @@ /* packet.h * Definitions for packet disassembly structures and routines * - * $Id: packet.h,v 1.60 2002/08/28 20:40:44 jmayer Exp $ + * $Id: packet.h,v 1.61 2002/10/14 17:33:50 guy Exp $ * * Ethereal - Network traffic analyzer * By Gerald Combs <gerald@ethereal.com> @@ -63,6 +63,7 @@ typedef struct _packet_counts { gint vines; gint other; gint total; + gint arp; } packet_counts; /* Types of character encodings */ |