From 766114c5cc60a71e9ea11f83e65363c214cb1cfc Mon Sep 17 00:00:00 2001 From: Vincent Bernat Date: Mon, 24 Sep 2018 15:00:42 +0200 Subject: [PATCH] dot3: fix 100BASE-T4 MAU Fix #297 --- src/lib/atoms/port.c | 2 +- src/lldp-const.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/lib/atoms/port.c b/src/lib/atoms/port.c index 459aa0b9..b7088d4d 100644 --- a/src/lib/atoms/port.c +++ b/src/lib/atoms/port.c @@ -79,7 +79,7 @@ static lldpctl_map_t operational_mau_type_values[] = { { 11, "10BaseTFD - UTP MAU, full duplex mode" }, { 12, "10BaseFLHD - async fiber MAU, half duplex mode" }, { 13, "10BaseFLDF - async fiber MAU, full duplex mode" }, - { 14, "10BaseT4 - 4 pair category 3 UTP" }, + { 14, "100BaseT4 - 4 pair category 3 UTP" }, { 15, "100BaseTXHD - 2 pair category 5 UTP, half duplex mode" }, { 16, "100BaseTXFD - 2 pair category 5 UTP, full duplex mode" }, { 17, "100BaseFXHD - X fiber over PMT, half duplex mode" }, diff --git a/src/lldp-const.h b/src/lldp-const.h index 6ad2d071..7414827a 100644 --- a/src/lldp-const.h +++ b/src/lldp-const.h @@ -61,7 +61,7 @@ #define LLDP_DOT3_MAU_10BASETFD 11 #define LLDP_DOT3_MAU_10BASEFLHD 12 #define LLDP_DOT3_MAU_10BASEFLFD 13 -#define LLDP_DOT3_MAU_10BASET4 14 +#define LLDP_DOT3_MAU_100BASET4 14 #define LLDP_DOT3_MAU_100BASETXHD 15 #define LLDP_DOT3_MAU_100BASETXFD 16 #define LLDP_DOT3_MAU_100BASEFXHD 17 -- 2.39.5