summaryrefslogtreecommitdiff
path: root/epan/dissectors/packet-sccp.h
diff options
context:
space:
mode:
authorLuis Ontanon <luis.ontanon@gmail.com>2006-03-11 15:30:52 +0000
committerLuis Ontanon <luis.ontanon@gmail.com>2006-03-11 15:30:52 +0000
commit19f81800ba6afe40aec1a2d6742c1f03ed63b3fa (patch)
tree61bfe24b50c8b791aaedc30957c42836027a0fbc /epan/dissectors/packet-sccp.h
parent01bf34cb88c5eb217ac802b7dac8525a94af6c61 (diff)
downloadwireshark-19f81800ba6afe40aec1a2d6742c1f03ed63b3fa.tar.gz
use se_trees instead of GHashTables,
rename binding into assoc(iation) which is the AOC name. move the definition of sccp_assoc_t to packet-sccp.h so that information regarding sccp associations it can be used by user protocols svn path=/trunk/; revision=17590
Diffstat (limited to 'epan/dissectors/packet-sccp.h')
-rw-r--r--epan/dissectors/packet-sccp.h49
1 files changed, 49 insertions, 0 deletions
diff --git a/epan/dissectors/packet-sccp.h b/epan/dissectors/packet-sccp.h
new file mode 100644
index 0000000000..df7b1648b5
--- /dev/null
+++ b/epan/dissectors/packet-sccp.h
@@ -0,0 +1,49 @@
+/* packet-sccp.h
+ * Definitions for Signalling Connection Control Part (SCCP) dissection
+ *
+ * $Id: $
+ *
+ * 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 __PACKET_SCCP_H
+#define __PACKET_SCCP_H
+
+typedef enum _sccp_payload_t {
+ SCCP_PLOAD_NONE,
+ SCCP_PLOAD_RANAP,
+ SCCP_PLOAD_TCAP,
+ SCCP_PLOAD_CAMEL
+} sccp_payload_t;
+
+/* obscure to SCCP, to be defined by users */
+typedef struct _sccp_payload_data_t sccp_payload_data_t;
+
+typedef struct _sccp_assoc_info_t {
+ guint32 calling_dpc;
+ guint32 called_dpc;
+ guint8 calling_ssn;
+ guint8 called_ssn;
+ gboolean has_calling_key;
+ gboolean has_called_key;
+ sccp_payload_t pload;
+ sccp_payload_data_t* private_data;
+} sccp_assoc_info_t;
+
+#endif