summaryrefslogtreecommitdiff
path: root/follow.h
diff options
context:
space:
mode:
authorGerald Combs <gerald@wireshark.org>1998-09-27 22:12:47 +0000
committerGerald Combs <gerald@wireshark.org>1998-09-27 22:12:47 +0000
commit2e7e493198543e3fdb4b404763b02a2ad22d180e (patch)
tree01aa8a843d84f24a66f7bd9af00e105efe1ffcdc /follow.h
parent385699d4310480e19aecf08dcff23e792667747a (diff)
downloadwireshark-2e7e493198543e3fdb4b404763b02a2ad22d180e.tar.gz
Merged in a _huge_ patch from Guy Harris. It adds a time stap column,
generalizes the column printing code, adds a "frame" tree item to the tree view, and fixes a bunch of miscellaneous coding bugs. svn path=/trunk/; revision=31
Diffstat (limited to 'follow.h')
-rw-r--r--follow.h7
1 files changed, 4 insertions, 3 deletions
diff --git a/follow.h b/follow.h
index 186435e43d..68bf2aef61 100644
--- a/follow.h
+++ b/follow.h
@@ -1,6 +1,6 @@
/* follow.h
*
- * $Id: follow.h,v 1.1 1998/09/17 03:12:26 gerald Exp $
+ * $Id: follow.h,v 1.2 1998/09/27 22:12:26 gerald Exp $
*
* Copyright 1998 Mike Hall <mlh@io.com>
*
@@ -38,8 +38,9 @@ typedef struct _tcp_frag {
} tcp_frag;
char* build_follow_filter( packet_info * );
-void reassemble_tcp( u_long, u_long, char*, int, u_long );
+void reassemble_tcp( u_long, u_long, const char*, int, u_long );
int check_fragments( int );
-void write_packet_data( u_char *, int );
+void reset_tcp_reassembly( void );
+void write_packet_data( const u_char *, int );
#endif