summaryrefslogtreecommitdiffstats
path: root/src/if.h
diff options
context:
space:
mode:
authorRoy Marples <roy@marples.name>2020-04-19 07:52:47 +0100
committerRoy Marples <roy@marples.name>2020-04-19 07:52:47 +0100
commit628167b10574e83805b6a1b67b89ddc53ea231c5 (patch)
tree8818de9458134307942c4ce943ec9d2a8cad28e4 /src/if.h
parent9823ded7ab5c3ba2650274738763521e3e277666 (diff)
downloaddhcpcd-628167b10574e83805b6a1b67b89ddc53ea231c5.tar.xz
inet6: Add 'temporary' directive to the slaac option
This instructs dhcpcd to create a temporary address for each address generated from a RA. As such, dhcpcd no longer looks at the kernel option for it as the functionality is being removed from some or never existed in the first place.
Diffstat (limited to 'src/if.h')
-rw-r--r--src/if.h7
1 files changed, 0 insertions, 7 deletions
diff --git a/src/if.h b/src/if.h
index df1cb92c..0a2fc6cb 100644
--- a/src/if.h
+++ b/src/if.h
@@ -220,13 +220,6 @@ int if_addrflags(const struct interface *, const struct in_addr *,
#ifdef INET6
void if_disable_rtadv(void);
void if_setup_inet6(const struct interface *);
-#ifdef IPV6_MANAGETEMPADDR
-int ip6_use_tempaddr(const char *ifname);
-int ip6_temp_preferred_lifetime(const char *ifname);
-int ip6_temp_valid_lifetime(const char *ifname);
-#else
-#define ip6_use_tempaddr(a) (0)
-#endif
int ip6_forwarding(const char *ifname);
struct ra;