summaryrefslogtreecommitdiffstats
path: root/net.c
diff options
context:
space:
mode:
authorRoy Marples <roy@marples.name>2012-10-12 10:31:51 +0000
committerRoy Marples <roy@marples.name>2012-10-12 10:31:51 +0000
commitd7555c125933800075bc57d3320a60b745463f0b (patch)
treee4f522074a4d1a2803f5548b486959fec9037ed6 /net.c
parent27805e96f6257a79e3f343c302e3c744262c0455 (diff)
downloaddhcpcd-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.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/net.c b/net.c
index ae373c16..3ae3f010 100644
--- a/net.c
+++ b/net.c
@@ -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);