aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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 f28bb51d37..d06a167deb 100644
--- a/epan/dissectors/packet-ethertype.c
+++ b/epan/dissectors/packet-ethertype.c
@@ -107,6 +107,7 @@ const value_string etype_vals[] = {
{ETHERTYPE_TIPC, "Transparent Inter Process Communication" },
{ETHERTYPE_LLDP, "802.1 Link Layer Discovery Protocol (LLDP)" },
{ETHERTYPE_3GPP2, "CDMA2000 A10 3GPP2 Packet" },
+ {ETHERTYPE_COBRANET, "Cirrus Cobranet Packet" },
/*
* NDISWAN on Windows translates Ethernet frames from higher-level
* protocols into PPP frames to hand to the PPP driver, and translates
diff --git a/epan/etypes.h b/epan/etypes.h
index 6131791ef6..217c0909a4 100644
--- a/epan/etypes.h
+++ b/epan/etypes.h
@@ -214,6 +214,10 @@
#define ETHERTYPE_PPP 0x880b /* no, this is not PPPoE */
#endif
+#ifndef ETHERTYPE_COBRANET
+#define ETHERTYPE_COBRANET 0x8819 /* Cirrus cobranet */
+#endif
+
#ifndef ETHERTYPE_MPLS
#define ETHERTYPE_MPLS 0x8847 /* MPLS unicast packet */
#endif