aboutsummaryrefslogtreecommitdiffstats
path: root/follow.h
diff options
context:
space:
mode:
authorGerald Combs <gerald@wireshark.org>1999-11-28 03:35:20 +0000
committerGerald Combs <gerald@wireshark.org>1999-11-28 03:35:20 +0000
commit664fde99e5fb0fbbfcc9e5f5faf96fca297161f2 (patch)
tree304d3e136325cddc0bb4491ab2bfd6dec342e70c /follow.h
parent9f084a7ebc9e583bb9fd0b4bd1246c652838b81f (diff)
Add code to colorize TCP streams.
svn path=/trunk/; revision=1131
Diffstat (limited to 'follow.h')
-rw-r--r--follow.h11
1 files changed, 9 insertions, 2 deletions
diff --git a/follow.h b/follow.h
index 15b798aa6a..cb74fd444f 100644
--- a/follow.h
+++ b/follow.h
@@ -1,6 +1,6 @@
/* follow.h
*
- * $Id: follow.h,v 1.6 1999/10/22 07:17:29 guy Exp $
+ * $Id: follow.h,v 1.7 1999/11/28 03:35:09 gerald Exp $
*
* Copyright 1998 Mike Hall <mlh@io.com>
*
@@ -40,9 +40,16 @@ typedef struct _tcp_frag {
struct _tcp_frag *next;
} tcp_frag;
+typedef struct _tcp_stream_chunk {
+ guint32 src_addr;
+ guint16 src_port;
+ guint32 secs, usecs;
+ guint32 dlen;
+} tcp_stream_chunk;
+
char* build_follow_filter( packet_info * );
void reassemble_tcp( u_long, u_long, const char*, u_long, int,
- address *, address *, u_int, u_int );
+ address *, address *, u_int, u_int, guint32, guint32 );
void reset_tcp_reassembly( void );
#endif