aboutsummaryrefslogtreecommitdiffstats
path: root/epan/follow.h
diff options
context:
space:
mode:
authorMichael Mann <mmann78@netscape.net>2016-01-02 08:58:08 -0500
committerMichael Mann <mmann78@netscape.net>2016-01-03 13:36:18 +0000
commit1fed5fef9a455171323e08f46f2dd8c1b834df79 (patch)
tree14f04a9c27e1362385e11fff70f3cc5b90137611 /epan/follow.h
parentca736cc7b49650764340bf420f834ddbd92da60b (diff)
Add HTTP Follow stream
This automatically detects and decompresses HTTP along a TCP stream through the use of taps. Bug: 3528 Change-Id: I8ab832d509700d0da8eabf3c3e514d8511c598d3 Reviewed-on: https://code.wireshark.org/review/13009 Petri-Dish: Michael Mann <mmann78@netscape.net> Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org> Reviewed-by: Michael Mann <mmann78@netscape.net>
Diffstat (limited to 'epan/follow.h')
-rw-r--r--epan/follow.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/epan/follow.h b/epan/follow.h
index 4e6b748840..7eefe2270e 100644
--- a/epan/follow.h
+++ b/epan/follow.h
@@ -54,11 +54,12 @@ typedef struct _tcp_stream_chunk {
/** Build a follow filter based on the current packet's conversation.
*
* @param packet_info [in] The current packet.
+ * @param append_filter [in] Optional filter to && (AND) to generated one.
* @return A filter that specifies the conversation. Must be g_free()d
* the caller.
*/
WS_DLL_PUBLIC
-gchar* build_follow_conv_filter( packet_info * packet_info);
+gchar* build_follow_conv_filter( packet_info * packet_info, const char* append_filter);
/** Build a follow filter based on the current TCP/UDP stream index.
* follow_index() must be called prior to calling this.