aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-alcap.h
diff options
context:
space:
mode:
authorlego <lego@f5534014-38df-0310-8fa8-9805f1628bb7>2005-08-19 11:53:39 +0000
committerlego <lego@f5534014-38df-0310-8fa8-9805f1628bb7>2005-08-19 11:53:39 +0000
commitaf016684e5801fba5727031b46f84a8d61347b1e (patch)
tree81d61eed3b6fe397efd9eb221de16eaa37b4eb7a /epan/dissectors/packet-alcap.h
parentfafd13df7537e8813982e2953a6ac3a5e65e8540 (diff)
Keep information about the call-leg so that all the messages of a leg can be filtered given a parameter of it.
Create the header to export the structures thyat hold that info. git-svn-id: http://anonsvn.wireshark.org/wireshark/trunk@15430 f5534014-38df-0310-8fa8-9805f1628bb7
Diffstat (limited to 'epan/dissectors/packet-alcap.h')
-rw-r--r--epan/dissectors/packet-alcap.h45
1 files changed, 45 insertions, 0 deletions
diff --git a/epan/dissectors/packet-alcap.h b/epan/dissectors/packet-alcap.h
new file mode 100644
index 0000000000..7acd36634e
--- /dev/null
+++ b/epan/dissectors/packet-alcap.h
@@ -0,0 +1,45 @@
+/* packet-alcap.h
+ *
+ * $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.
+ */
+
+typedef struct _alcap_leg_info_t {
+ guint32 dsaid;
+ guint32 osaid;
+ guint32 pathid;
+ guint32 cid;
+ guint32 sugr;
+ gchar* nsap;
+ guint erq;
+ guint rlc;
+} alcap_leg_info_t;
+
+
+typedef struct _alcap_message_info_t {
+ guint msg_type;
+ guint32 dsaid;
+ guint32 osaid;
+ guint32 pathid;
+ guint32 cid;
+ guint32 sugr;
+ gchar* nsap;
+} alcap_message_info_t;
+