From 9b348d7d482603250769f4ddfb46ea77b9976131 Mon Sep 17 00:00:00 2001 From: Thomas Markwalder Date: Mon, 11 Dec 2017 16:32:03 -0500 Subject: [PATCH] [master] Fixed static v6 leases not getting written to packet Merges in rt45292a. --- server/dhcpv6.c | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/server/dhcpv6.c b/server/dhcpv6.c index dec3c48ae..bb613a74c 100644 --- a/server/dhcpv6.c +++ b/server/dhcpv6.c @@ -2225,6 +2225,9 @@ reply_process_ia_na(struct reply_state *reply, struct option_cache *ia) { reply->client_id.data, 60), iaid); + /* Write the lease out in wire-format to the outbound buffer */ + write_to_packet(reply, ia_cursor); + if ((reply->buf.reply.msg_type == DHCPV6_REPLY) && (reply->on_star.on_commit != NULL)) { execute_statements(NULL, reply->packet, NULL, NULL, @@ -4247,6 +4250,10 @@ reply_process_ia_pd(struct reply_state *reply, struct option_cache *ia) { print_hex_1(reply->client_id.len, reply->client_id.data, 60), iaid); + + /* Write the lease out in wire-format to the outbound buffer */ + write_to_packet(reply, ia_cursor); + if ((reply->buf.reply.msg_type == DHCPV6_REPLY) && (reply->on_star.on_commit != NULL)) { execute_statements(NULL, reply->packet, NULL, NULL, -- 2.47.3