aboutsummaryrefslogtreecommitdiffstats
path: root/ui/rtp_stream.h
diff options
context:
space:
mode:
authorMichael Mann <mmann78@netscape.net>2015-05-14 22:53:16 -0400
committerAnders Broman <a.broman58@gmail.com>2015-05-20 11:03:58 +0000
commitfeb47cf93662723386dbce7d1f180efc39f131f1 (patch)
tree535e365114a2df552a963af9a9cead0c9864bff4 /ui/rtp_stream.h
parent713ed3f81724f3ea39ade8fdd53f482715f296ca (diff)
Start exposing the filter field of a tap listener to the RTP GUI APIs.
A tap listener has the ability to apply a filter (typically the display filter). Add a parameter to RTP GUI API functions to allow them to pass in a filter. Bug: 996 Change-Id: Ib184dfb023be5d1d24a0d842b4039311426b5293 Reviewed-on: https://code.wireshark.org/review/8468 Petri-Dish: Michael Mann <mmann78@netscape.net> Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org> Reviewed-by: Anders Broman <a.broman58@gmail.com>
Diffstat (limited to 'ui/rtp_stream.h')
-rw-r--r--ui/rtp_stream.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/ui/rtp_stream.h b/ui/rtp_stream.h
index 9c9b57c070..d7cef57158 100644
--- a/ui/rtp_stream.h
+++ b/ui/rtp_stream.h
@@ -137,7 +137,7 @@ struct _rtpstream_tapinfo {
* So whenever rtp_stream.c is added to the list of WIRESHARK_TAP_SRCs, the tap will be registered on startup.
* If not, it will be registered on demand by the rtp_streams and rtp_analysis functions that need it.
*/
-void register_tap_listener_rtp_stream(rtpstream_tapinfo_t *tapinfo);
+void register_tap_listener_rtp_stream(rtpstream_tapinfo_t *tapinfo, const char *fstring);
/**
* Removes the rtp_streams tap listener (if not already done)
@@ -154,7 +154,7 @@ void rtpstream_reset(rtpstream_tapinfo_t *tapinfo);
* Scans all packets for RTP streams and updates the RTP streams list.
* (redissects all packets)
*/
-void rtpstream_scan(rtpstream_tapinfo_t *tapinfo, capture_file *cap_file);
+void rtpstream_scan(rtpstream_tapinfo_t *tapinfo, capture_file *cap_file, const char *fstring);
/**
* Saves an RTP stream as raw data stream with timestamp information for later RTP playback.