summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--epan/afn.c2
-rw-r--r--epan/afn.h2
2 files changed, 4 insertions, 0 deletions
diff --git a/epan/afn.c b/epan/afn.c
index cf28e1f2ba..13049871c3 100644
--- a/epan/afn.c
+++ b/epan/afn.c
@@ -58,6 +58,8 @@ const value_string afn_vals[] = {
{ AFNUM_EIGRP_IPV6, "EIGRP IPv6 Service Family" },
{ AFNUM_LCAF, "LISP Canonical Address Format (LCAF)" },
{ AFNUM_LINK_STATE, "Link State and TE information" },
+ { AFNUM_EUI48, "48-bit MAC Address" },
+ { AFNUM_EUI64, "64-bit MAC Address" },
{ 65535, "Reserved" },
{ 0, NULL },
};
diff --git a/epan/afn.h b/epan/afn.h
index f22453831c..3b9fd56734 100644
--- a/epan/afn.h
+++ b/epan/afn.h
@@ -65,6 +65,8 @@ extern "C" {
#define AFNUM_EIGRP_IPV6 16386 /* EIGRP IPv6 Service Family */
#define AFNUM_LCAF 16387 /* LISP Canonical Address Format */
#define AFNUM_LINK_STATE 16388 /* draft-ietf-idr-ls-distribution */
+#define AFNUM_EUI48 16389 /* 48-bit MAC Address */
+#define AFNUM_EUI64 16390 /* 64-bit MAC Address */
extern const value_string afn_vals[];