aboutsummaryrefslogtreecommitdiffstats
path: root/follow.h
diff options
context:
space:
mode:
authorLaurent Deniel <laurent.deniel@free.fr>1999-07-31 13:55:16 +0000
committerLaurent Deniel <laurent.deniel@free.fr>1999-07-31 13:55:16 +0000
commitfb8aa8fb7a85b3557bc17e3b63b1ed1fd2655453 (patch)
treed511fedee6d1f6f9d42037adf020e36bdeff4593 /follow.h
parent68e50f34862eca036a8c9069de891a89ddf1af8a (diff)
Fix TCP follow stream feature:
- call reset_tcp_reassembly before build_follow_filter - modify reassemble_tcp so that packet validity is checked before processing it. svn path=/trunk/; revision=410
Diffstat (limited to 'follow.h')
-rw-r--r--follow.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/follow.h b/follow.h
index 7af23bef81..bce8e0a675 100644
--- a/follow.h
+++ b/follow.h
@@ -1,6 +1,6 @@
/* follow.h
*
- * $Id: follow.h,v 1.4 1999/07/07 01:41:15 guy Exp $
+ * $Id: follow.h,v 1.5 1999/07/31 13:55:16 deniel Exp $
*
* Copyright 1998 Mike Hall <mlh@io.com>
*
@@ -41,7 +41,8 @@ typedef struct _tcp_frag {
} tcp_frag;
char* build_follow_filter( packet_info * );
-void reassemble_tcp( u_long, u_long, const char*, u_long, int, u_long );
+void reassemble_tcp( u_long, u_long, const char*, u_long, int,
+ u_long, u_long, u_int, u_int );
void reset_tcp_reassembly( void );
#endif