diff options
| author | Roy Marples <roy@marples.name> | 2015-06-12 19:21:32 +0000 |
|---|---|---|
| committer | Roy Marples <roy@marples.name> | 2015-06-12 19:21:32 +0000 |
| commit | accc0bb8716dd3c381d706a95076bcc69a64a17c (patch) | |
| tree | a2aa5827dadee422a4cf6c3f18ce23d07ab2c9bc /if.c | |
| parent | 32897869f1afd4bd2c6d943ee65d21492856048b (diff) | |
| download | dhcpcd-accc0bb8716dd3c381d706a95076bcc69a64a17c.tar.xz | |
Stop making IPv4LL into a DHCP lease and treat it independantly from any
DHCP lease.
This allows us to manage IPv4LL and DHCP at the same time a lot easier.
Diffstat (limited to 'if.c')
| -rw-r--r-- | if.c | 4 |
1 files changed, 3 insertions, 1 deletions
@@ -67,6 +67,7 @@ #include "if.h" #include "if-options.h" #include "ipv4.h" +#include "ipv4ll.h" #include "ipv6nd.h" #ifdef __QNX__ @@ -80,8 +81,9 @@ if_free(struct interface *ifp) if (ifp == NULL) return; - ipv4_free(ifp); + ipv4ll_free(ifp); dhcp_free(ifp); + ipv4_free(ifp); dhcp6_free(ifp); ipv6nd_free(ifp); ipv6_free(ifp); |
