aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-l2tp.h
diff options
context:
space:
mode:
authorAnders Broman <anders.broman@ericsson.com>2013-09-25 20:58:37 +0000
committerAnders Broman <anders.broman@ericsson.com>2013-09-25 20:58:37 +0000
commit19fdb497d4d3bad8370eb3794a7f11955e8104ad (patch)
tree229dc52edb640045b9b300f1e19b6a8f60ec3d0a /epan/dissectors/packet-l2tp.h
parent376c5792a19180f012e818a141907db701256863 (diff)
Add the abillity to let vendor AVP subdisectors add Message type to the info column.
svn path=/trunk/; revision=52216
Diffstat (limited to 'epan/dissectors/packet-l2tp.h')
-rw-r--r--epan/dissectors/packet-l2tp.h32
1 files changed, 32 insertions, 0 deletions
diff --git a/epan/dissectors/packet-l2tp.h b/epan/dissectors/packet-l2tp.h
new file mode 100644
index 0000000000..e34e164d5c
--- /dev/null
+++ b/epan/dissectors/packet-l2tp.h
@@ -0,0 +1,32 @@
+/* packet-l2tp.h
+ * Routines for Layer Two Tunnelling Protocol (L2TP) 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., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
+ */
+#ifndef __PACKET_L2TP_H__
+#define __PACKET_L2TP_H__
+
+typedef struct _l2tp_cntrl_data {
+ guint32 ccid;
+ int msg_type;
+} l2tp_cntrl_data_t;
+
+#endif /* __PACKET_L2TP_H__ */