summaryrefslogtreecommitdiff
path: root/ui/gtk/mcast_stream_dlg.h
diff options
context:
space:
mode:
authorAlexis La Goutte <alexis.lagoutte@gmail.com>2014-10-27 23:00:54 +0100
committerMichael Mann <mmann78@netscape.net>2015-02-08 22:22:33 +0000
commit0310132a82f2642ba0dd995e12aeebad665f2e7c (patch)
tree58e277e00c464ffe1848f5d6cf3e30e1421cb98d /ui/gtk/mcast_stream_dlg.h
parentd7ee0952d1a7e79e0b54483572f446f86aef4a57 (diff)
downloadwireshark-0310132a82f2642ba0dd995e12aeebad665f2e7c.tar.gz
Multicast Stream: Move mcast_stream.[ch] to ui
Preparation to add Multicast Stream Dialog on Qt (Add extern C...) Change-Id: Ic8bc39a18dba607d6da116df799de7847ce8e4c8 Reviewed-on: https://code.wireshark.org/review/6984 Petri-Dish: Alexis La Goutte <alexis.lagoutte@gmail.com> Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org> Reviewed-by: Alexis La Goutte <alexis.lagoutte@gmail.com> Tested-by: Alexis La Goutte <alexis.lagoutte@gmail.com> Reviewed-by: Michael Mann <mmann78@netscape.net>
Diffstat (limited to 'ui/gtk/mcast_stream_dlg.h')
-rw-r--r--ui/gtk/mcast_stream_dlg.h10
1 files changed, 7 insertions, 3 deletions
diff --git a/ui/gtk/mcast_stream_dlg.h b/ui/gtk/mcast_stream_dlg.h
index f64106ba76..819d09d3a9 100644
--- a/ui/gtk/mcast_stream_dlg.h
+++ b/ui/gtk/mcast_stream_dlg.h
@@ -30,6 +30,8 @@
#ifndef __MCAST_STREAM_DLG_H__
#define __MCAST_STREAM_DLG_H__
+#include "ui/mcast_stream.h"
+
/** @file
* @ingroup dialog_group
* "Mcast Stream Analysis" dialog box.
@@ -43,10 +45,12 @@
void mcaststream_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 mcast_stream_info_t*
+ * @return Pointer to an rtpstream_tapinfo_t
*/
-void mcaststream_dlg_update(GList *list);
+mcaststream_tapinfo_t *mcaststream_dlg_get_tapinfo(void);
#endif /* __MCAST_STREAM_DLG_H__ */