diff options
author | Gerald Combs <gerald@wireshark.org> | 1998-09-17 03:12:28 +0000 |
---|---|---|
committer | Gerald Combs <gerald@wireshark.org> | 1998-09-17 03:12:28 +0000 |
commit | 5110b21fd8cba19554f0c4f7a52e96af3acf4927 (patch) | |
tree | 2f123f7fccaa41be86444a370706bb390d0a6ca8 /packet.h | |
parent | 3ad9f399156ea5af0864455e042a43727cac715d (diff) | |
download | wireshark-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.h | 13 |
1 files changed, 12 insertions, 1 deletions
@@ -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. */ |