summaryrefslogtreecommitdiff
path: root/gtk/voip_calls_dlg.h
diff options
context:
space:
mode:
authorLars Roland <Lars.Roland@gmx.net>2005-02-01 12:12:35 +0000
committerLars Roland <Lars.Roland@gmx.net>2005-02-01 12:12:35 +0000
commit197ceddab109a59288f0b0d868df2f5e6adb4da2 (patch)
tree6dc104c87f777e4ffe6cfba24b8c5ccca2dfcbe4 /gtk/voip_calls_dlg.h
parentdb69eb8c13136402095a66f5069c32e3ab37520a (diff)
downloadwireshark-197ceddab109a59288f0b0d868df2f5e6adb4da2.tar.gz
From Alejandro Vaquero:
h323 taps support up to 5 messages per packet now. VoIP call analysis: - Collect ISUP, SIP and H323 calls from a capture and show them in window with the following info: - Start and Stop time of the call - Init svn path=/trunk/; revision=13225
Diffstat (limited to 'gtk/voip_calls_dlg.h')
-rw-r--r--gtk/voip_calls_dlg.h55
1 files changed, 55 insertions, 0 deletions
diff --git a/gtk/voip_calls_dlg.h b/gtk/voip_calls_dlg.h
new file mode 100644
index 0000000000..0c54061516
--- /dev/null
+++ b/gtk/voip_calls_dlg.h
@@ -0,0 +1,55 @@
+/* voip_calls_dlg.h
+ * VoIP conversations addition for ethereal
+ *
+ * $Id$
+ *
+ * Copyright 2004, Ericsson , Spain
+ * By Francisco Alcoba <francisco.alcoba@ericsson.com>
+ *
+ * based on h323_conversations_dlg.h
+ * Copyright 2004, Iskratel, Ltd, Kranj
+ * By Miha Jemec <m.jemec@iskratel.si>
+ *
+ * H323, RTP and Graph Support
+ * By Alejandro Vaquero, alejandro.vaquero@verso.com
+ * Copyright 2005, Verso Technologies Inc.
+ *
+ * Ethereal - Network traffic analyzer
+ * By Gerald Combs <gerald@ethereal.com>
+ * Copyright 1998 Gerald Combs
+ *
+ * This program is free software; you can redistribute it and/or
+ * modify it under the terms of the GNU General Public License
+ * as published by the Free Software Foundation; either version 2
+ * of the License, or (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program; if not, write to the Free Software
+ * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
+ */
+
+#ifndef VOIP_CALLS_DLG_H_INCLUDED
+#define VOIP_CALLS_DLG_H_INCLUDED
+
+#include <gtk/gtk.h>
+
+/**
+ * Create or reactivate the voip calls dialog box.
+ *
+ * @param list pointer to list of rtp_stream_info_t*
+ */
+void voip_calls_dlg_show(GList *list);
+
+/**
+ * Update the contents of the dialog box clist with that of list.
+ *
+ * @param list pointer to list of rtp_stream_info_t*
+ */
+void voip_calls_dlg_update(GList *list);
+
+#endif /* VOIP_CALLS_DLG_H_INCLUDED*/