aboutsummaryrefslogtreecommitdiffstats
path: root/epan/follow.h
diff options
context:
space:
mode:
authorSake Blok <sake@euronet.nl>2007-12-15 23:25:05 +0000
committerSake Blok <sake@euronet.nl>2007-12-15 23:25:05 +0000
commit8f7d4aff962c86185d0e659f8ab8ffaabd46fbf5 (patch)
treee98441b2f636c8116944507229ae2b84cf5bd4d1 /epan/follow.h
parent4b2ce715478028c448cc5d3a780047c4366861ef (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. svn path=/trunk/; revision=23878
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 );