From 84f6b18a20a01c466ce7ef095ebad5be655b282a Mon Sep 17 00:00:00 2001 From: guy Date: Wed, 14 Sep 2005 08:59:41 +0000 Subject: Have cf_retap_packets() take an argument that indicates whether to generate columns; use cf_retap_packets instead of cf_redissect_packets() when running taps (the general flow graph stat uses the Info column). git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@15793 f5534014-38df-0310-8fa8-9805f1628bb7 --- gtk/rtp_stream.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'gtk/rtp_stream.c') diff --git a/gtk/rtp_stream.c b/gtk/rtp_stream.c index d145639413..7d93a3b1a1 100644 --- a/gtk/rtp_stream.c +++ b/gtk/rtp_stream.c @@ -324,7 +324,7 @@ void rtpstream_scan(void) register_tap_listener_rtp_stream(); the_tapinfo_struct.mode = TAP_ANALYSE; - cf_retap_packets(&cfile); + cf_retap_packets(&cfile, FALSE); if (!was_registered) remove_tap_listener_rtp_stream(); @@ -355,7 +355,7 @@ gboolean rtpstream_save(rtp_stream_info_t* stream, const gchar *filename) the_tapinfo_struct.mode = TAP_SAVE; the_tapinfo_struct.filter_stream_fwd = stream; - cf_retap_packets(&cfile); + cf_retap_packets(&cfile, FALSE); the_tapinfo_struct.mode = TAP_ANALYSE; if (!was_registered) @@ -386,7 +386,7 @@ void rtpstream_mark(rtp_stream_info_t* stream_fwd, rtp_stream_info_t* stream_rev the_tapinfo_struct.mode = TAP_MARK; the_tapinfo_struct.filter_stream_fwd = stream_fwd; the_tapinfo_struct.filter_stream_rev = stream_rev; - cf_retap_packets(&cfile); + cf_retap_packets(&cfile, FALSE); the_tapinfo_struct.mode = TAP_ANALYSE; if (!was_registered) -- cgit v1.2.3