From 05d4c23c4acc885b132e8f844ec6d3089fcf254a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Cenk=20G=C3=BCndo=C4=9Fan?= Date: Thu, 6 Oct 2016 15:58:50 +0200 Subject: [PATCH] ethertype: use correct type for NDN and CCNx --- sys/include/net/ethertype.h | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/sys/include/net/ethertype.h b/sys/include/net/ethertype.h index 457ec45cb1..7368b6bde5 100644 --- a/sys/include/net/ethertype.h +++ b/sys/include/net/ethertype.h @@ -34,7 +34,8 @@ extern "C" { #define ETHERTYPE_RESERVED (0x0000) /**< Reserved */ #define ETHERTYPE_IPV4 (0x0800) /**< Internet protocol version 4 */ #define ETHERTYPE_ARP (0x0806) /**< Address resolution protocol */ -#define ETHERTYPE_NDN (0x0801) /**< Parc CCNX */ +#define ETHERTYPE_CCNX (0x0801) /**< Parc CCNX */ +#define ETHERTYPE_NDN (0x8624) /**< NDN Protocol (http://named-data.net/) */ #define ETHERTYPE_IPV6 (0x86dd) /**< Internet protocol version 6 */ #define ETHERTYPE_UNKNOWN (0xffff) /**< Reserved (no protocol specified) */