aboutsummaryrefslogtreecommitdiffstats
path: root/epan/follow.h
diff options
context:
space:
mode:
authorsake <sake@f5534014-38df-0310-8fa8-9805f1628bb7>2007-12-15 23:25:05 +0000
committersake <sake@f5534014-38df-0310-8fa8-9805f1628bb7>2007-12-15 23:25:05 +0000
commit3f0b45494fa525b8d6bcab2d92570510bacb9203 (patch)
treee98441b2f636c8116944507229ae2b84cf5bd4d1 /epan/follow.h
parent91c5c43d0891c6deb5f035a044d17271486b876e (diff)
Fixes the "follow tcp stream" output when there are frames missing in the
capture file that were actually on the wire. The reassembly code waited for the gaps to be filled in by retransmissions, which would never come. With this fix all acknowledged data will be output with "[xxx bytes missing in capture file]" inserted in every gap. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@23878 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'epan/follow.h')
-rw-r--r--epan/follow.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/epan/follow.h b/epan/follow.h
index f84e4ad960..989e4bd729 100644
--- a/epan/follow.h
+++ b/epan/follow.h
@@ -42,7 +42,7 @@ typedef struct _tcp_stream_chunk {
} tcp_stream_chunk;
char* build_follow_filter( packet_info * );
-void reassemble_tcp( gulong, gulong, const char*, gulong, int,
+void reassemble_tcp( gulong, gulong, gulong, const char*, gulong, int,
address *, address *, guint, guint );
void reset_tcp_reassembly( void );