aboutsummaryrefslogtreecommitdiffstats
path: root/packet.h
diff options
context:
space:
mode:
authorGerald Combs <gerald@wireshark.org>1998-09-17 03:12:28 +0000
committerGerald Combs <gerald@wireshark.org>1998-09-17 03:12:28 +0000
commit5110b21fd8cba19554f0c4f7a52e96af3acf4927 (patch)
tree2f123f7fccaa41be86444a370706bb390d0a6ca8 /packet.h
parent3ad9f399156ea5af0864455e042a43727cac715d (diff)
downloadwireshark-5110b21fd8cba19554f0c4f7a52e96af3acf4927.tar.gz
wireshark-5110b21fd8cba19554f0c4f7a52e96af3acf4927.tar.bz2
wireshark-5110b21fd8cba19554f0c4f7a52e96af3acf4927.zip
* Added Mike Hall's TCP reconstruction code.
svn path=/trunk/; revision=10
Diffstat (limited to 'packet.h')
-rw-r--r--packet.h13
1 files changed, 12 insertions, 1 deletions
diff --git a/packet.h b/packet.h
index c8dd075bd0..a43cf8ecb1 100644
--- a/packet.h
+++ b/packet.h
@@ -1,7 +1,7 @@
/* packet.h
* Definitions for packet disassembly structures and routines
*
- * $Id: packet.h,v 1.4 1998/09/17 02:37:47 gerald Exp $
+ * $Id: packet.h,v 1.5 1998/09/17 03:12:28 gerald Exp $
*
* Ethereal - Network traffic analyzer
* By Gerald Combs <gerald@zing.org>
@@ -64,6 +64,17 @@ typedef struct _frame_data {
gchar *win_info[5]; /* Packet list text */
} frame_data;
+typedef struct _packet_info {
+ char *srcip;
+ int ip_src;
+ char *destip;
+ int ipproto;
+ int srcport;
+ int destport;
+ int iplen;
+ int iphdrlen;
+} packet_info;
+
/* Many of the structs and definitions below were taken from include files
* in the Linux distribution. */