HooksManager::callCallouts(Hooks.hooks_index_select_key_,
*callout_handle);
- // This server is skipped because of status is not NEXT_STEP_CONTINUE.
+ // This server is skipped because the status is not NEXT_STEP_CONTINUE.
if (callout_handle->getStatus() != CalloutHandle::NEXT_STEP_CONTINUE) {
return (false);
}
/// @brief Getter which returns the server's hostname.
///
- /// @return the hostname as as std::string.
+ /// @return the hostname as a std::string.
const std::string getHostname() const {
return (hostname_);
}
/// @return a pointer to a configuration
virtual isc::data::ElementPtr toElement() const;
-
private:
/// @brief The resolvable name of the server. If not blank, then the
/// server's IP address should be dynamically resolved at runtime.
/// enabled for use. It defaults to true.
bool enabled_;
- /// @brief Pointer to domain's the TSIGKeyInfo.
- /// Value is empty if the domain is not configured for TSIG.
+ /// @brief Pointer to the server TSIGKeyInfo..
+ /// Value is empty if the server is not configured for TSIG.
TSIGKeyInfoPtr tsig_key_info_;
/// @brief Inherited key. When true the key was inherited from the domain,
- /// when false the key was not inherited from the domain.
+ /// false otherwise.
bool inherited_key_;
};