From 51268641edc95f3a529326405c0aaca2fcbe1fb9 Mon Sep 17 00:00:00 2001 From: jake Date: Fri, 30 Jan 2009 21:25:52 +0000 Subject: 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 --- epan/dissectors/packet-skinny.h | 39 +++++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 epan/dissectors/packet-skinny.h (limited to 'epan/dissectors/packet-skinny.h') 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 + * 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; + -- cgit v1.2.3