diff options
| author | Roy Marples <roy@marples.name> | 2012-10-12 10:31:51 +0000 |
|---|---|---|
| committer | Roy Marples <roy@marples.name> | 2012-10-12 10:31:51 +0000 |
| commit | d7555c125933800075bc57d3320a60b745463f0b (patch) | |
| tree | e4f522074a4d1a2803f5548b486959fec9037ed6 /net.c | |
| parent | 27805e96f6257a79e3f343c302e3c744262c0455 (diff) | |
| download | dhcpcd-d7555c125933800075bc57d3320a60b745463f0b.tar.xz | |
Add DHCPv6 INFORM support.
This is automatically started when RA flags O is set.
If no DHCPv6 request options are configured in dhcpcd.conf then we
request domain servers and search lists.
Diffstat (limited to 'net.c')
| -rw-r--r-- | net.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -65,6 +65,7 @@ #include "config.h" #include "common.h" #include "dhcp.h" +#include "dhcp6.h" #include "if-options.h" #include "ipv6rs.h" #include "net.h" @@ -187,6 +188,7 @@ free_interface(struct interface *iface) { if (!iface) return; + dhcp6_free(iface); ipv6rs_free(iface); if (iface->state) { free_options(iface->state->options); |
