From: Thomas Markwalder Date: Thu, 20 Feb 2014 19:16:42 +0000 (-0500) Subject: [master] Merge branch 'trac3034' X-Git-Tag: bind10-1.2.0beta1-release~32 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=22c667a66536ff3e3741bc67025d824644ed4e7d;p=thirdparty%2Fkea.git [master] Merge branch 'trac3034' b10-dhcp6 parses and uses ddns-dhcp configuration --- 22c667a66536ff3e3741bc67025d824644ed4e7d diff --cc src/bin/dhcp6/dhcp6_srv.cc index 523305a2c8,0b8e9c4b06..aed4db4b14 --- a/src/bin/dhcp6/dhcp6_srv.cc +++ b/src/bin/dhcp6/dhcp6_srv.cc @@@ -100,33 -98,6 +100,8 @@@ Dhcp6Hooks Hooks namespace isc { namespace dhcp { +const std::string Dhcpv6Srv::VENDOR_CLASS_PREFIX("VENDOR_CLASS_"); + - namespace { - - // The following constants describe server's behavior with respect to the - // DHCPv6 Client FQDN Option sent by a client. They will be removed - // when DDNS parameters for DHCPv6 are implemented with the ticket #3034. - - // Enable AAAA RR update delegation to the client (Disabled). - const bool FQDN_ALLOW_CLIENT_UPDATE = false; - // Globally enable updates (Enabled). - const bool FQDN_ENABLE_UPDATE = true; - // The partial name generated for the client if empty name has been - // supplied. - const char* FQDN_GENERATED_PARTIAL_NAME = "myhost"; - // Do update, even if client requested no updates with N flag (Disabled). - const bool FQDN_OVERRIDE_NO_UPDATE = false; - // Server performs an update when client requested delegation (Enabled). - const bool FQDN_OVERRIDE_CLIENT_UPDATE = true; - // The fully qualified domain-name suffix if partial name provided by - // a client. - const char* FQDN_PARTIAL_SUFFIX = "example.com"; - // Should server replace the domain-name supplied by the client (Disabled). - const bool FQDN_REPLACE_CLIENT_NAME = false; - - } - /// @brief file name of a server-id file /// /// Server must store its duid in persistent storage that must not change