Commit 293fd0f7 authored by Simon Kelley's avatar Simon Kelley

Missed interface re-read path in netlink.c

parent c1be9177
......@@ -207,6 +207,7 @@ int iface_enumerate(int family, void *parm, int (*callback)())
enumerate_interfaces();
create_bound_listeners(0);
}
#ifdef HAVE_DHCP6
if (daemon->doing_dhcp6 || daemon->doing_ra)
dhcp_construct_contexts(now);
......@@ -353,8 +354,13 @@ void netlink_multicast(time_t now)
enumerate_interfaces();
create_bound_listeners(0);
}
#ifdef HAVE_DHCP6
dhcp_construct_contexts(now);
if (daemon->doing_dhcp6 || daemon->doing_ra)
dhcp_construct_contexts(now);
if (daemon->doing_dhcp6)
lease_find_interfaces(now);
#endif
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment