Blame SOURCES/dnsmasq-2.86-dhcpv6-client-arch.patch

085fce
From 9e2b6474f2074511c3911b2f777e8e8704782670 Mon Sep 17 00:00:00 2001
085fce
From: =?UTF-8?q?Petr=20Men=C5=A1=C3=ADk?= <pemensik@redhat.com>
085fce
Date: Wed, 22 Sep 2021 14:54:01 +0200
085fce
Subject: [PATCH] Add support for option6 names of RFC 5970
085fce
085fce
Client Network Interface Identifier and Client System Architecture Type
085fce
options were not understood by dnsmasq. Add it to supported option
085fce
types.
085fce
---
085fce
 src/dhcp-common.c | 2 ++
085fce
 1 file changed, 2 insertions(+)
085fce
085fce
diff --git a/src/dhcp-common.c b/src/dhcp-common.c
085fce
index 224c4d6..368d686 100644
085fce
--- a/src/dhcp-common.c
085fce
+++ b/src/dhcp-common.c
085fce
@@ -645,6 +645,8 @@ static const struct opttab_t opttab6[] = {
085fce
   { "ntp-server", 56,  0 },
085fce
   { "bootfile-url", 59, OT_NAME },
085fce
   { "bootfile-param", 60, OT_CSTRING },
085fce
+  { "client-arch", 61, 2 | OT_DEC }, /* RFC 5970 */
085fce
+  { "client-interface-id", 62, 1 | OT_DEC }, /* RFC 5970 */
085fce
   { NULL, 0, 0 }
085fce
 };
085fce
 #endif
085fce
-- 
085fce
2.31.1
085fce