Option4ClientFqdn>(answer->getOption(DHO_FQDN));
if (fqdn) {
hostname = fqdn->getDomainName();
- fqdn_fwd = fqdn->getFlag(Option4ClientFqdn::FLAG_S);
- fqdn_rev = !fqdn->getFlag(Option4ClientFqdn::FLAG_N);
+ CfgMgr::instance().getD2ClientMgr().getUpdateDirections(*fqdn,
+ fqdn_fwd,
+ fqdn_rev);
} else {
opt_hostname = boost::dynamic_pointer_cast<OptionString>
(answer->getOption(DHO_HOST_NAME));
// NCRs cannot be sent to the d2_mgr unless updates are enabled.
if (d2_mgr_.ddnsEnabled()) {
- // There should be an NCR only if response S flag is 1.
- /// @todo This logic will need to change if forward and reverse
- /// updates are ever controlled independently.
- if ((response_flags & Option4ClientFqdn::FLAG_S) == 0) {
+ // There should be an NCR if response S flag is 1 or N flag is 0.
+ bool exp_fwd = (response_flags & Option4ClientFqdn::FLAG_S);
+ bool exp_rev = (!(response_flags & Option4ClientFqdn::FLAG_N));
+ if (!exp_fwd && !exp_rev) {
ASSERT_EQ(0, d2_mgr_.getQueueSize());
} else {
// Verify that there is one NameChangeRequest as expected.
ASSERT_EQ(1, d2_mgr_.getQueueSize());
- verifyNameChangeRequest(isc::dhcp_ddns::CHG_ADD, true, true,
+ verifyNameChangeRequest(isc::dhcp_ddns::CHG_ADD,
+ exp_rev, exp_fwd,
reply->getYiaddr().toText(),
"myhost.example.com.",
"", // empty DHCID means don't check it
//
// Server should respect client's delegation request and NOT do updates:
-// - Response flags should be N = 1, S = 0, O = 0
+// - Response flags should be N = 0, S = 0, O = 0
// - Should not queue any NCRs
TEST_F(NameDhcpv4SrvTest, respectClientDelegation) {
flagVsConfigScenario(Option4ClientFqdn::FLAG_E,
- (Option4ClientFqdn::FLAG_E |
- Option4ClientFqdn::FLAG_N));
+ Option4ClientFqdn::FLAG_E);
+ // Option4ClientFqdn::FLAG_N));
}
// Tests the following scenario: