aboutsummaryrefslogtreecommitdiffstats
path: root/epan/follow.h
diff options
context:
space:
mode:
authoretxrab <etxrab@f5534014-38df-0310-8fa8-9805f1628bb7>2012-02-05 10:39:12 +0000
committeretxrab <etxrab@f5534014-38df-0310-8fa8-9805f1628bb7>2012-02-05 10:39:12 +0000
commit95c50d004433018afc124657b70f25a1a6b217a3 (patch)
treec8fb9a07dc9bf558665655addc778ef4ba04f7ac /epan/follow.h
parent19ddc8faae2c569b718f77f2ba03b425aab7baab (diff)
From QA Cafe:
Add support to follow UDP and TCP streams like wireshark does. UDP streams are selected with IP address/port pairs. TCP stream are selected with either the stream index or IP address/port pairs. https://bugs.wireshark.org/bugzilla/show_bug.cgi?id=6684 git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@40852 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'epan/follow.h')
-rw-r--r--epan/follow.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/epan/follow.h b/epan/follow.h
index 8d279e548c..9fbbd4d11b 100644
--- a/epan/follow.h
+++ b/epan/follow.h
@@ -42,6 +42,8 @@ typedef struct _tcp_stream_chunk {
} tcp_stream_chunk;
char* build_follow_filter( packet_info * );
+gboolean follow_tcp_addr( const address *, guint, const address *, guint );
+gboolean follow_tcp_index( guint32 );
void reassemble_tcp( guint32, gulong, gulong, gulong, const char*, gulong,
int, address *, address *, guint, guint );
void reset_tcp_reassembly( void );