diff options
author | Tom Gundersen <teg@jklm.no> | 2015-11-10 15:43:52 +0100 |
---|---|---|
committer | Tom Gundersen <teg@jklm.no> | 2015-11-11 15:42:38 +0100 |
commit | 7a695d8e1fda59857c4c23bcb50cd1e0aaf4a854 (patch) | |
tree | 996633b296c8ecd09018c3d1c346d5b721a72562 /src/network/networkd-link.h | |
parent | 9d96e6c3efbe5ef52b2855612d51db52c469beb2 (diff) |
networkd: dhcp6 - split up configure() method
Enabling address acquisition, configuring the client and starting the client are now
split out. This to better handle the client being repeatedly enabled due to router
advertisements.
Diffstat (limited to 'src/network/networkd-link.h')
-rw-r--r-- | src/network/networkd-link.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/network/networkd-link.h b/src/network/networkd-link.h index a22041870e..d915e7c9c0 100644 --- a/src/network/networkd-link.h +++ b/src/network/networkd-link.h @@ -147,7 +147,8 @@ int link_set_timezone(Link *link, const char *timezone); int ipv4ll_configure(Link *link); int dhcp4_configure(Link *link); -int dhcp6_configure(Link *link, bool information_request); +int dhcp6_configure(Link *link); +int dhcp6_request_address(Link *link); int ndisc_configure(Link *link); bool link_lldp_enabled(Link *link); |