aboutsummaryrefslogtreecommitdiffstats
path: root/epan/cisco_pid.h
diff options
context:
space:
mode:
authorJoerg Mayer <jmayer@loplof.de>2020-01-10 09:50:09 +0100
committerGuy Harris <guy@alum.mit.edu>2020-01-10 23:36:33 +0000
commita8c7beb07074168a15fc1c99972acc09701fde71 (patch)
tree66d389e0c972d97396ee97f221970938d311eb64 /epan/cisco_pid.h
parent58949b7ff14ff8f052704c27718c90be4b234449 (diff)
Use symbolic values for Cisco's LLC PIDs
Change-Id: I4cc99cef1e52fcce308608dd95befa2286787b16 Reviewed-on: https://code.wireshark.org/review/35728 Petri-Dish: Jörg Mayer <jmayer@loplof.de> Tested-by: Petri Dish Buildbot Reviewed-by: Jaap Keuter <jaap.keuter@xs4all.nl> Reviewed-by: Guy Harris <guy@alum.mit.edu>
Diffstat (limited to 'epan/cisco_pid.h')
-rw-r--r--epan/cisco_pid.h42
1 files changed, 42 insertions, 0 deletions
diff --git a/epan/cisco_pid.h b/epan/cisco_pid.h
new file mode 100644
index 0000000000..6c93b3b799
--- /dev/null
+++ b/epan/cisco_pid.h
@@ -0,0 +1,42 @@
+/* packet-cisco-oui.h
+ * Register an LLC dissector table for Cisco's OUI 00:00:0c
+ *
+ * Wireshark - Network traffic analyzer
+ * By Gerald Combs <gerald@wireshark.org>
+ * Copyright 1998 Gerald Combs
+ *
+ * SPDX-License-Identifier: GPL-2.0-or-later
+ */
+
+#ifndef __PACKET_CISCO_PID_H__
+#define __PACKET_CISCO_PID_H__
+
+#define CISCO_PID_DRIP 0x0102
+#define CISCO_PID_PAGP 0x0104
+#define CISCO_PID_MLS_HELLO 0x0105
+#define CISCO_PID_RLQ_REQ 0x0108
+#define CISCO_PID_RLQ_RESP 0x0109
+#define CISCO_PID_PVSTPP 0x010B
+#define CISCO_PID_VLAN_BRIDGE 0x010C
+#define CISCO_PID_UDLD 0x0111
+#define CISCO_PID_MCP 0x0139
+#define CISCO_PID_CDP 0x2000
+#define CISCO_PID_CGMP 0x2001
+#define CISCO_PID_VTP 0x2003
+#define CISCO_PID_DTP 0x2004
+#define CISCO_PID_STP_UL_FAST 0x200A
+
+#endif
+
+/*
+ * Editor modelines - https://www.wireshark.org/tools/modelines.html
+ *
+ * Local variables:
+ * c-basic-offset: 8
+ * tab-width: 8
+ * indent-tabs-mode: t
+ * End:
+ *
+ * vi: set shiftwidth=8 tabstop=8 noexpandtab:
+ * :indentSize=8:tabSize=8:noTabs=false:
+ */