aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-sccp.h
diff options
context:
space:
mode:
authorlego <lego@f5534014-38df-0310-8fa8-9805f1628bb7>2006-03-11 15:30:52 +0000
committerlego <lego@f5534014-38df-0310-8fa8-9805f1628bb7>2006-03-11 15:30:52 +0000
commit37072568eb3a0d1deffe6086a649b502cf24f5d9 (patch)
tree61bfe24b50c8b791aaedc30957c42836027a0fbc /epan/dissectors/packet-sccp.h
parent44922f9a5031df8be4934786d4b031f3fe3af836 (diff)
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 git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@17590 f5534014-38df-0310-8fa8-9805f1628bb7
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