aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-skinny.h
diff options
context:
space:
mode:
authorjake <jake@f5534014-38df-0310-8fa8-9805f1628bb7>2009-01-30 21:25:52 +0000
committerjake <jake@f5534014-38df-0310-8fa8-9805f1628bb7>2009-01-30 21:25:52 +0000
commit51268641edc95f3a529326405c0aaca2fcbe1fb9 (patch)
treeeaf96370cd874ba5aa38a229dd9e70c7657ed4e6 /epan/dissectors/packet-skinny.h
parentcb38717f777be8e1e9ba2e893df04c8cd1786484 (diff)
From Carlos Mendioroz:
Enhanced the skinny dissector to expose a tap, and added SKINNY call control protocol support to gtk/call_voip to show those calls. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@27332 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'epan/dissectors/packet-skinny.h')
-rw-r--r--epan/dissectors/packet-skinny.h39
1 files changed, 39 insertions, 0 deletions
diff --git a/epan/dissectors/packet-skinny.h b/epan/dissectors/packet-skinny.h
new file mode 100644
index 0000000000..5de79a8c93
--- /dev/null
+++ b/epan/dissectors/packet-skinny.h
@@ -0,0 +1,39 @@
+/* packet-skinny.h
+ * Routines for skinny packet disassembly
+ *
+ * $Id$
+ *
+ * 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.
+ */
+
+
+/* Container for tapping relevant data */
+typedef struct _skinny_info_t
+{
+ guint32 messId;
+ guint32 lineId;
+ guint32 callId;
+ guint32 passThruId;
+ const gchar *messageName;
+ guint32 callState;
+ gchar *callingParty;
+ gchar *calledParty;
+ gboolean hasCallInfo;
+} skinny_info_t;
+