aboutsummaryrefslogtreecommitdiffstats
path: root/tap-megaco-common.h
diff options
context:
space:
mode:
authorrbalint <rbalint@f5534014-38df-0310-8fa8-9805f1628bb7>2008-12-31 17:47:36 +0000
committerrbalint <rbalint@f5534014-38df-0310-8fa8-9805f1628bb7>2008-12-31 17:47:36 +0000
commit6b5c6d5bdef8991fbe7c4ce30032d79abafb736c (patch)
treee7635763be0c96dbad8b8cfc7630d26c21758a14 /tap-megaco-common.h
parent4d1cf87e993a6f17b524d7f5ebf0cda6d856ba52 (diff)
Service response time statistics for MEGACO (CLI part).
Refactored GUI part to avoid code duplication. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@27143 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'tap-megaco-common.h')
-rw-r--r--tap-megaco-common.h95
1 files changed, 95 insertions, 0 deletions
diff --git a/tap-megaco-common.h b/tap-megaco-common.h
new file mode 100644
index 0000000000..133f3f2967
--- /dev/null
+++ b/tap-megaco-common.h
@@ -0,0 +1,95 @@
+/* tap-rtp-common.h
+ * MEGACO statistics handler functions used by tshark and wireshark
+ *
+ * $Id: tap-megaco-common.h 26244 2008-09-21 14:50:05Z morriss $
+ *
+ * Copyright 2008, Ericsson AB
+ * By Balint Reczey <balint.reczey@ericsson.com>
+ *
+ * most functions are copied from gtk/rtp_stream.c and gtk/rtp_analisys.c
+ * Copyright 2003, Alcatel Business Systems
+ * By Lars Ruoff <lars.ruoff@gmx.net>
+ *
+ * Wireshark - Network traffic analyzer
+ * By Gerald Combs <gerald@wireshark.org>
+ * 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 TAP_MEGACO_COMMON_H
+#define TAP_MEGACO_COMMON_H
+
+#define NUM_TIMESTATS 12
+
+#define GCP_CMD_REPLY_CASE \
+ case GCP_CMD_ADD_REPLY: \
+ case GCP_CMD_MOVE_REPLY: \
+ case GCP_CMD_MOD_REPLY: \
+ case GCP_CMD_SUB_REPLY: \
+ case GCP_CMD_AUDITCAP_REPLY: \
+ case GCP_CMD_AUDITVAL_REPLY: \
+ case GCP_CMD_NOTIFY_REPLY: \
+ case GCP_CMD_SVCCHG_REPLY: \
+ case GCP_CMD_TOPOLOGY_REPLY: \
+ case GCP_CMD_REPLY:
+
+#define GCP_CMD_REQ_CASE \
+ case GCP_CMD_ADD_REQ: \
+ case GCP_CMD_MOVE_REQ: \
+ case GCP_CMD_MOD_REQ: \
+ case GCP_CMD_SUB_REQ: \
+ case GCP_CMD_AUDITCAP_REQ: \
+ case GCP_CMD_AUDITVAL_REQ: \
+ case GCP_CMD_NOTIFY_REQ: \
+ case GCP_CMD_SVCCHG_REQ: \
+ case GCP_CMD_TOPOLOGY_REQ: \
+ case GCP_CMD_CTX_ATTR_AUDIT_REQ: \
+ case GCP_CMD_OTHER_REQ:
+
+/* used to keep track of the statistics for an entire program interface */
+typedef struct _megacostat_t {
+ char *filter;
+ timestat_t rtd[NUM_TIMESTATS];
+ guint32 open_req_num;
+ guint32 disc_rsp_num;
+ guint32 req_dup_num;
+ guint32 rsp_dup_num;
+#ifdef __GTK_H__
+ GtkWidget *win;
+ GtkWidget *vbox;
+ GtkWidget *scrolled_window;
+ GtkCList *table;
+#endif /*__GHTK_H__*/
+} megacostat_t;
+
+static const value_string megaco_message_type[] = {
+ { 0, "ADD "},
+ { 1, "MOVE"},
+ { 2, "MDFY"},
+ { 3, "SUBT"},
+ { 4, "AUCP"},
+ { 5, "AUVL"},
+ { 6, "NTFY"},
+ { 7, "SVCC"},
+ { 8, "TOPO"},
+ { 9, "NONE"},
+ { 10,"ALL "},
+ { 0, NULL}
+};
+
+int megacostat_packet(void *pms, packet_info *pinfo, epan_dissect_t *edt _U_, const void *pmi);
+
+#endif /*TAP_MEGACO_COMMON_H*/