diff options
author | Matija Amidzic <matija.amidzic@sartura.hr> | 2018-12-21 15:58:47 +0100 |
---|---|---|
committer | Hans Dedecker <dedeckeh@gmail.com> | 2019-01-15 11:33:43 +0100 |
commit | 7abbed4fba6c9b75ec5331291eb7dc787f99a977 (patch) | |
tree | 16f27e93fe6e49c7b99e60eed26d588465ec2f87 /src/odhcpd.h | |
parent | dd1aefd24fa2b23a3f54a327636e06a782248b66 (diff) |
dhcpv6: add setting to choose IA_NA, IA_PD or both
Adds the config options to set if DHCPv6 'stateful addresing' hands out
IA_NA (Internet Address - Network Address), IA_PD (Internet Address -
Prefix Delegation), both or none.
Signed-off-by: Matija Amidzic <matija.amidzic@sartura.hr>
Diffstat (limited to 'src/odhcpd.h')
-rw-r--r-- | src/odhcpd.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/odhcpd.h b/src/odhcpd.h index 10f26b1..5157f1f 100644 --- a/src/odhcpd.h +++ b/src/odhcpd.h @@ -236,6 +236,8 @@ struct interface { void *dhcpv6_raw; size_t dhcpv6_raw_len; bool dhcpv6_assignall; + bool dhcpv6_pd; + bool dhcpv6_na; char *upstream; size_t upstream_len; |