aboutsummaryrefslogtreecommitdiffstats
path: root/epan/dissectors/packet-lldp.c
diff options
context:
space:
mode:
authorAnton Glukhov <anton.a.glukhov@gmail.com>2018-01-12 18:51:58 +0100
committerAnders Broman <a.broman58@gmail.com>2018-01-14 08:34:47 +0000
commitdb5d4e10de0b603330523b4ef9b81d6fdce18ecc (patch)
tree6e40495b8778c1e8ade874841c204fe3b3a8f03c /epan/dissectors/packet-lldp.c
parent57230a2e8ca2287beeefff93477aca344af845d4 (diff)
Fix lldp 802.3br typo
Change-Id: I8b69922c2bbb7905480277e7b28d9894453e785b Signed-off-by: Anton Glukhov <anton.a.glukhov@gmail.com> Reviewed-on: https://code.wireshark.org/review/25284 Petri-Dish: Michael Mann <mmann78@netscape.net> Tested-by: Petri Dish Buildbot Reviewed-by: Alexis La Goutte <alexis.lagoutte@gmail.com> Reviewed-by: Anders Broman <a.broman58@gmail.com>
Diffstat (limited to 'epan/dissectors/packet-lldp.c')
-rw-r--r--epan/dissectors/packet-lldp.c78
1 files changed, 39 insertions, 39 deletions
diff --git a/epan/dissectors/packet-lldp.c b/epan/dissectors/packet-lldp.c
index 0ee9b1b56f..5dae0e076a 100644
--- a/epan/dissectors/packet-lldp.c
+++ b/epan/dissectors/packet-lldp.c
@@ -280,12 +280,12 @@ static int hf_ieee_802_1qbg_evb_configure_caps_vdp = -1;
static int hf_ieee_802_1qbg_evb_supported_vsi = -1;
static int hf_ieee_802_1qbg_evb_configured_vsi = -1;
static int hf_ieee_802_1qbg_evb_retrans_timer = -1;
-static int hf_ieee_802_1br_aec = -1;
-static int hf_ieee_802_1br_aec_support = -1;
-static int hf_ieee_802_1br_aec_enable = -1;
-static int hf_ieee_802_1br_aec_active = -1;
-static int hf_ieee_802_1br_aec_addfragsize = -1;
-static int hf_ieee_802_1br_aec_reserved = -1;
+static int hf_ieee_802_3br_aec = -1;
+static int hf_ieee_802_3br_aec_support = -1;
+static int hf_ieee_802_3br_aec_enable = -1;
+static int hf_ieee_802_3br_aec_active = -1;
+static int hf_ieee_802_3br_aec_addfragsize = -1;
+static int hf_ieee_802_3br_aec_reserved = -1;
static int hf_media_tlv_subtype = -1;
static int hf_media_tlv_subtype_caps = -1;
static int hf_media_tlv_subtype_caps_llpd = -1;
@@ -468,7 +468,7 @@ static gint ett_802_3_power = -1;
static gint ett_802_3_aggregation = -1;
static gint ett_802_1_aggregation = -1;
static gint ett_802_1qbg_capabilities_flags = -1;
-static gint ett_802_1br_capabilities_flags = -1;
+static gint ett_802_3br_capabilities_flags = -1;
static gint ett_media_capabilities = -1;
static gint ett_profinet_period = -1;
static gint ett_cisco_fourwire_tlv = -1;
@@ -623,7 +623,7 @@ static const value_string ieee_802_3_subtypes[] = {
{ 0x03, "Link Aggregation" },
{ 0x04, "Maximum Frame Size" },
{ 0x05, "EEE (Energy-Efficient Ethernet)" },
- { 0x07, "IEEE 802.1br Additional Ethernet capabilities" },
+ { 0x07, "IEEE 802.3br Additional Ethernet capabilities" },
{ 0, NULL }
};
@@ -1061,12 +1061,12 @@ static const value_string hytec_mc[] = {
#define EVB_CAPA_ECP 0x0002
#define EVB_CAPA_VDP 0x0001
-/* IEEE 802.1br Additional Ethernet Capabilities flags */
-#define IEEE_802_1BR_AEC_SUPPORT 0x0001
-#define IEEE_802_1BR_AEC_ENABLE 0x0002
-#define IEEE_802_1BR_AEC_ACTIVE 0x0004
-#define IEEE_802_1BR_AEC_ADDFRAGSIZE 0x0018
-#define IEEE_802_1BR_AEC_RESERVED 0xFFE0
+/* IEEE 802.3br Additional Ethernet Capabilities flags */
+#define IEEE_802_3BR_AEC_SUPPORT 0x0001
+#define IEEE_802_3BR_AEC_ENABLE 0x0002
+#define IEEE_802_3BR_AEC_ACTIVE 0x0004
+#define IEEE_802_3BR_AEC_ADDFRAGSIZE 0x0018
+#define IEEE_802_3BR_AEC_RESERVED 0xFFE0
#define MAX_MAC_LEN 6
@@ -2648,19 +2648,19 @@ dissect_ieee_802_3_tlv(tvbuff_t *tvb, packet_info *pinfo _U_, proto_tree *tree,
break;
}
- case 0x07: /* IEEE 802.1br Frame Preemption Protocol */
+ case 0x07: /* IEEE 802.3br Frame Preemption Protocol */
{
static const int * preemption_capabilities[] = {
- &hf_ieee_802_1br_aec_support,
- &hf_ieee_802_1br_aec_enable,
- &hf_ieee_802_1br_aec_active,
- &hf_ieee_802_1br_aec_addfragsize,
- &hf_ieee_802_1br_aec_reserved,
+ &hf_ieee_802_3br_aec_support,
+ &hf_ieee_802_3br_aec_enable,
+ &hf_ieee_802_3br_aec_active,
+ &hf_ieee_802_3br_aec_addfragsize,
+ &hf_ieee_802_3br_aec_reserved,
NULL
};
/* Get Additional Ethernet Capabilities */
- proto_tree_add_bitmask(tree, tvb, offset, hf_ieee_802_1br_aec, ett_802_1br_capabilities_flags, preemption_capabilities, ENC_BIG_ENDIAN);
+ proto_tree_add_bitmask(tree, tvb, offset, hf_ieee_802_3br_aec, ett_802_3br_capabilities_flags, preemption_capabilities, ENC_BIG_ENDIAN);
break;
}
}
@@ -4912,29 +4912,29 @@ proto_register_lldp(void)
{ "Retransmission timer exponent", "lldp.ieee.802_1qbg.evb_retrans_timer", FT_UINT8, BASE_DEC,
NULL, 0x0, NULL, HFILL }
},
- { &hf_ieee_802_1br_aec,
- { "Additional Ethernet Capabilities", "lldp.ieee.802_1br.eac", FT_UINT16, BASE_HEX,
+ { &hf_ieee_802_3br_aec,
+ { "Additional Ethernet Capabilities", "lldp.ieee.802_3br.eac", FT_UINT16, BASE_HEX,
NULL, 0x0, NULL, HFILL }
},
- { &hf_ieee_802_1br_aec_support,
- { "Preemption capabilities support", "lldp.ieee.802_1br.aec.support", FT_BOOLEAN, 16,
- TFS(&tfs_supported_not_supported), IEEE_802_1BR_AEC_SUPPORT, NULL, HFILL }
+ { &hf_ieee_802_3br_aec_support,
+ { "Preemption capabilities support", "lldp.ieee.802_3br.aec.support", FT_BOOLEAN, 16,
+ TFS(&tfs_supported_not_supported), IEEE_802_3BR_AEC_SUPPORT, NULL, HFILL }
},
- { &hf_ieee_802_1br_aec_enable,
- { "Preemption capabilities enable", "lldp.ieee.802_1br.aec.enable", FT_BOOLEAN, 16,
- TFS(&tfs_enabled_disabled), IEEE_802_1BR_AEC_ENABLE, NULL, HFILL }
+ { &hf_ieee_802_3br_aec_enable,
+ { "Preemption capabilities enable", "lldp.ieee.802_3br.aec.enable", FT_BOOLEAN, 16,
+ TFS(&tfs_enabled_disabled), IEEE_802_3BR_AEC_ENABLE, NULL, HFILL }
},
- { &hf_ieee_802_1br_aec_active,
- { "Preemption capabilities active", "lldp.ieee.802_1br.aec.active", FT_BOOLEAN, 16,
- TFS(&tfs_active_inactive), IEEE_802_1BR_AEC_ACTIVE, NULL, HFILL }
+ { &hf_ieee_802_3br_aec_active,
+ { "Preemption capabilities active", "lldp.ieee.802_3br.aec.active", FT_BOOLEAN, 16,
+ TFS(&tfs_active_inactive), IEEE_802_3BR_AEC_ACTIVE, NULL, HFILL }
},
- { &hf_ieee_802_1br_aec_addfragsize,
- { "Additional Fragment Size", "lldp.ieee.802_1br.aec.addfragsize", FT_UINT16, BASE_DEC,
- NULL, IEEE_802_1BR_AEC_ADDFRAGSIZE, NULL, HFILL }
+ { &hf_ieee_802_3br_aec_addfragsize,
+ { "Additional Fragment Size", "lldp.ieee.802_3br.aec.addfragsize", FT_UINT16, BASE_DEC,
+ NULL, IEEE_802_3BR_AEC_ADDFRAGSIZE, NULL, HFILL }
},
- { &hf_ieee_802_1br_aec_reserved,
- { "Reserved", "lldp.ieee.802_1br.aec.reserved", FT_UINT16, BASE_HEX,
- NULL, IEEE_802_1BR_AEC_RESERVED, NULL, HFILL }
+ { &hf_ieee_802_3br_aec_reserved,
+ { "Reserved", "lldp.ieee.802_3br.aec.reserved", FT_UINT16, BASE_HEX,
+ NULL, IEEE_802_3BR_AEC_RESERVED, NULL, HFILL }
},
{ &hf_media_tlv_subtype,
{ "Media Subtype", "lldp.media.subtype", FT_UINT8, BASE_HEX,
@@ -5460,7 +5460,7 @@ proto_register_lldp(void)
&ett_802_3_aggregation,
&ett_802_1_aggregation,
&ett_802_1qbg_capabilities_flags,
- &ett_802_1br_capabilities_flags,
+ &ett_802_3br_capabilities_flags,
&ett_media_capabilities,
&ett_profinet_period,
&ett_cisco_fourwire_tlv,