aboutsummaryrefslogtreecommitdiffstats
path: root/follow.h
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2000-03-12 04:26:35 +0000
committerGuy Harris <guy@alum.mit.edu>2000-03-12 04:26:35 +0000
commit3d6cb57256c889b2f1ba51e89886d9bb9ea812fb (patch)
tree54cc571281ee1841dcec231f388eeb21a99e5b3a /follow.h
parentda5757e340026b133e2c864962159587dbb81282 (diff)
In the TCP stream following code, we don't use the time stamp field in
the stuff we write to the temporary file, so don't bother writing it. Keep track of the two sides of the TCP stream by keeping track of the source address *and* port, so that we correctly handle connections between two ports on the same machine. svn path=/trunk/; revision=1712
Diffstat (limited to 'follow.h')
-rw-r--r--follow.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/follow.h b/follow.h
index cb74fd444f..edc0917c8a 100644
--- a/follow.h
+++ b/follow.h
@@ -1,6 +1,6 @@
/* follow.h
*
- * $Id: follow.h,v 1.7 1999/11/28 03:35:09 gerald Exp $
+ * $Id: follow.h,v 1.8 2000/03/12 04:26:35 guy Exp $
*
* Copyright 1998 Mike Hall <mlh@io.com>
*
@@ -43,13 +43,12 @@ typedef struct _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, guint32, guint32 );
+ address *, address *, u_int, u_int );
void reset_tcp_reassembly( void );
#endif