aboutgitcodebugslistschat
path: root/dhcpv6.c
diff options
context:
space:
mode:
Diffstat (limited to 'dhcpv6.c')
-rw-r--r--dhcpv6.c5
1 files changed, 0 insertions, 5 deletions
diff --git a/dhcpv6.c b/dhcpv6.c
index 7f566a5..6399c38 100644
--- a/dhcpv6.c
+++ b/dhcpv6.c
@@ -210,7 +210,6 @@ static struct resp_t {
struct opt_server_id server_id;
struct opt_ia_na ia_na;
struct opt_ia_addr ia_addr;
- struct opt_dns_servers dns_servers;
struct opt_client_id client_id;
} __attribute__((__packed__)) resp = {
uh_resp,
@@ -227,9 +226,6 @@ static struct resp_t {
IN6ADDR_ANY_INIT, (uint32_t)~0U, (uint32_t)~0U
},
- { { OPT_DNS_SERVERS, OPT_SIZE(dns_servers), },
- IN6ADDR_ANY_INIT
- },
{ { OPT_CLIENTID, 0, },
{ 0 }
@@ -509,5 +505,4 @@ void dhcpv6_init(struct ctx *c)
memcpy(resp_not_on_link.server_id.duid_lladdr, c->mac, sizeof(c->mac));
resp.ia_addr.addr = c->addr6;
- resp.dns_servers.addr = c->dns6;
}