summaryrefslogtreecommitdiff
path: root/src/core/dhcp/nm-dhcp-systemd.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/core/dhcp/nm-dhcp-systemd.c')
-rw-r--r--src/core/dhcp/nm-dhcp-systemd.c9
1 files changed, 9 insertions, 0 deletions
diff --git a/src/core/dhcp/nm-dhcp-systemd.c b/src/core/dhcp/nm-dhcp-systemd.c
index 6f9312da27..b26a15a45b 100644
--- a/src/core/dhcp/nm-dhcp-systemd.c
+++ b/src/core/dhcp/nm-dhcp-systemd.c
@@ -366,6 +366,15 @@ ip6_start(NMDhcpClient *client, const struct in6_addr *ll_addr, GError **error)
_LOGW("dhcp-client6: only one prefix request is supported");
}
prefix_delegation = TRUE;
+ if (client_config->v6.pd_hint_length > 0) {
+ r = sd_dhcp6_client_set_prefix_delegation_hint(sd_client,
+ client_config->v6.pd_hint_length,
+ &client_config->v6.pd_hint_addr);
+ if (r < 0) {
+ nm_utils_error_set_errno(error, r, "failed to set prefix delegation hint: %s");
+ return FALSE;
+ }
+ }
}
r = sd_dhcp6_client_set_prefix_delegation(sd_client, prefix_delegation);
if (r < 0) {