aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-lldp.c
diff options
context:
space:
mode:
authorJoerg Mayer <jmayer@loplof.de>2019-01-21 15:31:15 +0100
committerJörg Mayer <jmayer@loplof.de>2019-01-23 17:22:44 +0000
commitca28f41d7eb8d74b422c0fed7de7e5a76674a07b (patch)
tree9b8d413812e35975f9ba2bd82bfee1d4e64ba032 /epan/dissectors/packet-lldp.c
parent81694c8498d13fb092d5d78e8e56e0c265890b61 (diff)
Small update up LLDP sub-tlvs
Change-Id: I33ed38d4819236e2d6f6b7384650fa182233ce30 Reviewed-on: https://code.wireshark.org/review/31706 Reviewed-by: Jörg Mayer <jmayer@loplof.de>
Diffstat (limited to 'epan/dissectors/packet-lldp.c')
-rw-r--r--epan/dissectors/packet-lldp.c26
1 files changed, 16 insertions, 10 deletions
diff --git a/epan/dissectors/packet-lldp.c b/epan/dissectors/packet-lldp.c
index 5db0734253..7a97a5e055 100644
--- a/epan/dissectors/packet-lldp.c
+++ b/epan/dissectors/packet-lldp.c
@@ -618,16 +618,22 @@ static const value_string dcbx_llink_types[] = {
/* IEEE 802.1 Subtypes */
static const value_string ieee_802_1_subtypes[] = {
- { 0x01, "Port VLAN ID" },
- { 0x02, "Port and Protocol VLAN ID" },
- { 0x03, "VLAN Name" },
- { 0x04, "Protocol Identity" },
- { 0x07, "Link Aggregation" },
- { 0x08, "Congestion Notification" },
- { 0x09, "ETS Configuration" },
- { 0x0A, "ETS Recommendation" },
- { 0x0B, "Priority Flow Control Configuration" },
- { 0x0C, "Application Protocol" },
+ { 0x01, "Port VLAN ID" }, /* 802.1Q - D.2.1 */
+ { 0x02, "Port and Protocol VLAN ID" }, /* 802.1Q - D.2.2 */
+ { 0x03, "VLAN Name" }, /* 802.1Q - D.2.3 */
+ { 0x04, "Protocol Identity" }, /* 802.1Q - D.2.4 */
+ { 0x05, "VID Usage Digest" }, /* 802.1Q - D.2.5 */
+ { 0x06, "Management VID" }, /* 802.1Q - D.2.6 */
+ { 0x07, "Link Aggregation" }, /* 802.1Q - D.2.7 */
+ { 0x08, "Congestion Notification" }, /* 802.1Q - D.2.8 */
+ { 0x09, "ETS Configuration" }, /* 802.1Q - D.2.9 */
+ { 0x0A, "ETS Recommendation" }, /* 802.1Q - D.2.10 */
+ { 0x0B, "Priority Flow Control Configuration" },/* 802.1Q - D.2.11 */
+ { 0x0C, "Application Protocol" }, /* 802.1Q - D.2.12 */
+ { 0x0D, "EVB" }, /* 802.1Q - D.2.13 */
+ { 0x0E, "CDCP" }, /* 802.1Q - D.2.14 */
+ { 0x0F, "Port extension" }, /* 802.1BR - B.2 */
+ { 0x10, "Application VLAN" }, /* 802.1Q - D.2.15 */
{ 0, NULL }
};