aboutsummaryrefslogtreecommitdiffstats
path: root/epan
diff options
context:
space:
mode:
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 c4df0d3932..6691335036 100644
--- a/epan/dissectors/packet-ethertype.c
+++ b/epan/dissectors/packet-ethertype.c
@@ -135,6 +135,7 @@ const value_string etype_vals[] = {
{PPP_PAP, "PPP Password Authentication Protocol" },
{PPP_CCP, "PPP Compression Control Protocol" },
{ETHERTYPE_LLT, "Veritas Low Latency Transport (not officially registered)"},
+ {ETHERTYPE_CFM, "IEEE 802.1ag Connectivity Fault Management (CFM) protocol" },
{ETHERTYPE_FCOE, "Fibre Channel over Ethernet" },
{ETHERTYPE_PTP, "PTPv2 over Ethernet (IEEE1588)"},
{0, NULL } };
diff --git a/epan/etypes.h b/epan/etypes.h
index 6bb798ba68..d85d026daa 100644
--- a/epan/etypes.h
+++ b/epan/etypes.h
@@ -358,6 +358,10 @@
/* transmission or distribution substation. */
/* There are three types of application services */
+#ifndef ETHERTYPE_CFM
+#define ETHERTYPE_CFM 0x8902 /* IEEE 802.1ag Connectivity Fault Management */
+#endif /* (CFM) protocol. */
+
#ifndef ETHERTYPE_FCOE
#define ETHERTYPE_FCOE 0x8906 /* Fibre Channel over Ethernet */
#endif