summaryrefslogtreecommitdiff
path: root/ui/gtk/rtp_analysis.c
diff options
context:
space:
mode:
authorGerald Combs <gerald@wireshark.org>2015-01-14 17:25:56 -0800
committerGerald Combs <gerald@wireshark.org>2015-01-30 06:48:32 +0000
commit2bf7878e8a7455fe656bb07e9a7d42e6ac4d87fd (patch)
tree3a0c99831311c43017d1d9b3336856e4a956c353 /ui/gtk/rtp_analysis.c
parent6824cee6c4b5f7c00b9dc4e9013aaa936b18b739 (diff)
downloadwireshark-2bf7878e8a7455fe656bb07e9a7d42e6ac4d87fd.tar.gz
Qt: Add the RTP Streams dialog.
Add keyboard shortcuts. Note that not all of the buttons made it from GTK+. Add a "Go to setup frame" option. Move rtp_streams.c from ui/gtk to ui. Add a help URL for RTP analysis (which needs to be split into streams + analysis). Fix RTP stream packet marking. Change-Id: Ifb8192ff701a933422509233d76461a46e459f4f Reviewed-on: https://code.wireshark.org/review/6852 Petri-Dish: Gerald Combs <gerald@wireshark.org> Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org> Reviewed-by: Gerald Combs <gerald@wireshark.org>
Diffstat (limited to 'ui/gtk/rtp_analysis.c')
-rw-r--r--ui/gtk/rtp_analysis.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/ui/gtk/rtp_analysis.c b/ui/gtk/rtp_analysis.c
index 6feac4a2e0..f4f48dcf38 100644
--- a/ui/gtk/rtp_analysis.c
+++ b/ui/gtk/rtp_analysis.c
@@ -3999,10 +3999,10 @@ rtp_analysis_cb(GtkAction *action _U_, gpointer user_data _U_)
}
/* Scan for rtpstream */
- rtpstream_scan();
+ rtpstream_scan(rtpstream_dlg_get_tapinfo(), &cfile);
/* search for reversed direction in the global rtp streams list */
nfound = 0;
- strinfo_list = g_list_first(rtpstream_get_info()->strinfo_list);
+ strinfo_list = g_list_first(rtpstream_dlg_get_tapinfo()->strinfo_list);
while (strinfo_list)
{
strinfo = (rtp_stream_info_t*)(strinfo_list->data);