aboutsummaryrefslogtreecommitdiffstats
path: root/ui/gtk/rtp_stream_dlg.h
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_stream_dlg.h
parent6824cee6c4b5f7c00b9dc4e9013aaa936b18b739 (diff)
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_stream_dlg.h')
-rw-r--r--ui/gtk/rtp_stream_dlg.h10
1 files changed, 7 insertions, 3 deletions
diff --git a/ui/gtk/rtp_stream_dlg.h b/ui/gtk/rtp_stream_dlg.h
index 91fadf1a0e..8c8fc6408f 100644
--- a/ui/gtk/rtp_stream_dlg.h
+++ b/ui/gtk/rtp_stream_dlg.h
@@ -28,6 +28,8 @@
#include <gtk/gtk.h>
+#include "ui/rtp_stream.h"
+
/** @file
* "RTP Stream Analysis" dialog box.
* @ingroup dialog_group
@@ -41,10 +43,12 @@
void rtpstream_dlg_show(GList *list);
/**
- * Update the contents of the dialog box clist with that of list.
+ * Retrieves a constant reference to the unique info structure of the
+ * rtp_streams tap listener.
+ * The user should not modify the data pointed to.
*
- * @param list pointer to list of rtp_stream_info_t*
+ * @return Pointer to an rtpstream_tapinfo_t
*/
-void rtpstream_dlg_update(GList *list);
+rtpstream_tapinfo_t *rtpstream_dlg_get_tapinfo(void);
#endif /* __RTP_STREAM_DLG_H__ */