summaryrefslogtreecommitdiffstats
path: root/src/lib/d2srv
diff options
context:
space:
mode:
authorRazvan Becheriu <razvan@isc.org>2021-08-09 17:01:22 +0200
committerFrancis Dupont <fdupont@isc.org>2021-08-09 17:08:24 +0200
commite8ebf11fb16d6ec8523f885e4533e865b1cdf9d3 (patch)
tree282089b8bc7fed87f762ff4219e088ef6e02f8d8 /src/lib/d2srv
parent[#2011] Addressed last comments (diff)
downloadkea-e8ebf11fb16d6ec8523f885e4533e865b1cdf9d3.tar.xz
kea-e8ebf11fb16d6ec8523f885e4533e865b1cdf9d3.zip
[#2011] clean up comments
Diffstat (limited to 'src/lib/d2srv')
-rw-r--r--src/lib/d2srv/d2_config.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/lib/d2srv/d2_config.h b/src/lib/d2srv/d2_config.h
index ef62d22862..892cd9729b 100644
--- a/src/lib/d2srv/d2_config.h
+++ b/src/lib/d2srv/d2_config.h
@@ -490,7 +490,7 @@ public:
/// @brief Convenience method which returns the server's TSIG key name.
///
- /// @return the key name in an std::string. If server has no TSIG key,
+ /// @return the key name in a std::string. If server has no TSIG key,
/// the string will be empty.
const std::string getKeyName() const;
@@ -526,7 +526,7 @@ private:
/// enabled for use. It defaults to true.
bool enabled_;
- /// @brief Pointer to the server TSIGKeyInfo..
+ /// @brief Pointer to the server TSIGKeyInfo.
/// Value is empty if the server is not configured for TSIG.
TSIGKeyInfoPtr tsig_key_info_;
@@ -552,7 +552,7 @@ typedef boost::shared_ptr<DnsServerInfoStorage> DnsServerInfoStoragePtr;
/// This class specifies a DNS domain and the list of DNS servers that support
/// it. Its primary use is to map a domain to the DNS server(s) responsible
/// for it.
-/// @todo Currently the name entry for a domain is just an std::string. It
+/// @todo Currently the name entry for a domain is just a std::string. It
/// may be worthwhile to change this to a dns::Name for purposes of better
/// validation and matching capabilities.
class DdnsDomain : public isc::data::UserContext, public isc::data::CfgToElement {
@@ -570,7 +570,7 @@ public:
/// @brief Getter which returns the domain's name.
///
- /// @return returns the name in an std::string.
+ /// @return returns the name in a std::string.
const std::string getName() const {
return (name_);
}
@@ -579,7 +579,7 @@ public:
///
/// @note: TSIG key infos are in servers.
///
- /// @return returns the key name in an std::string. If domain has no
+ /// @return returns the key name in a std::string. If domain has no
/// TSIG key, the string will be empty.
const std::string getKeyName() const {
return (key_name_);