summaryrefslogtreecommitdiff
path: root/epan
diff options
context:
space:
mode:
authorChris Bontje <cbontje@gmail.com>2017-01-20 11:30:31 -0700
committerMichael Mann <mmann78@netscape.net>2017-01-20 20:01:13 +0000
commit76d9d3dc5a0d69070a99d6d1304726028e1d7c2a (patch)
treecc4cd418ed7fe300ca773710f64f2e951ea37aad /epan
parentd6282d59a7263277b3ea6f952a2e9566a831cb77 (diff)
downloadwireshark-76d9d3dc5a0d69070a99d6d1304726028e1d7c2a.tar.gz
Identify Ethertype 0x892B (Schweitzer Engineering Labs layer 2 traffic).
Change-Id: I5479ed21116dd8f91f231ebd1ec230892df9a404 See: http://standards-oui.ieee.org/ethertype/eth.txt Reviewed-on: https://code.wireshark.org/review/19707 Petri-Dish: Michael Mann <mmann78@netscape.net> Reviewed-by: Alexis La Goutte <alexis.lagoutte@gmail.com> Tested-by: Petri Dish Buildbot <buildbot-no-reply@wireshark.org> Reviewed-by: Michael Mann <mmann78@netscape.net>
Diffstat (limited to 'epan')
-rw-r--r--epan/dissectors/packet-ethertype.c1
-rw-r--r--epan/etypes.h4
2 files changed, 5 insertions, 0 deletions
diff --git a/epan/dissectors/packet-ethertype.c b/epan/dissectors/packet-ethertype.c
index 45e64be35c..e02d55ac8d 100644
--- a/epan/dissectors/packet-ethertype.c
+++ b/epan/dissectors/packet-ethertype.c
@@ -177,6 +177,7 @@ const value_string etype_vals[] = {
{ ETHERTYPE_TDMOE, "Digium TDM over Ethernet Protocol" },
{ ETHERTYPE_WAI, "WAI Authentication Protocol" },
{ ETHERTYPE_VNTAG, "VN-Tag" },
+ { ETHERTYPE_SEL_L2, "Schweitzer Engineering Labs Layer 2 Protocol" },
{ ETHERTYPE_HSR, "High-availability Seamless Redundancy (IEC62439 Part 3)" },
{ ETHERTYPE_BPQ, "AX.25" },
{ ETHERTYPE_CMD, "CiscoMetaData" },
diff --git a/epan/etypes.h b/epan/etypes.h
index 2e3b661d1c..986682eb74 100644
--- a/epan/etypes.h
+++ b/epan/etypes.h
@@ -545,6 +545,10 @@ extern "C" {
#define ETHERTYPE_VNTAG 0x8926 /* VN-Tag */
#endif
+#ifndef ETHERTYPE_SEL_L2
+#define ETHERTYPE_SEL_L2 0x892B /* Schweitzer Engineering Labs Layer 2 */
+#endif
+
#ifndef ETHERTYPE_HSR
#define ETHERTYPE_HSR 0x892F /* High-availability Seamless Redundancy (IEC62439 Part 3) */
#endif