BIND 10 trac3210, updated. 9d3cf130a0c92c715b8ff1b7ce8f1743ab9c2bc7 [3210] Fixed trivial issues in the CfgMgr.

BIND 10 source code commits bind10-changes at lists.isc.org
Mon Oct 28 12:09:58 UTC 2013


The branch, trac3210 has been updated
       via  9d3cf130a0c92c715b8ff1b7ce8f1743ab9c2bc7 (commit)
      from  4a08e3662e7720ac6c96b7d585084bbe4033c29b (commit)

Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.

- Log -----------------------------------------------------------------
commit 9d3cf130a0c92c715b8ff1b7ce8f1743ab9c2bc7
Author: Marcin Siodelski <marcin at isc.org>
Date:   Mon Oct 28 13:09:50 2013 +0100

    [3210] Fixed trivial issues in the CfgMgr.
    
    This commit includes trivial changes to the doxygen documentation and
    make one variable const.

-----------------------------------------------------------------------

Summary of changes:
 src/lib/dhcpsrv/cfgmgr.h |   10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

-----------------------------------------------------------------------
diff --git a/src/lib/dhcpsrv/cfgmgr.h b/src/lib/dhcpsrv/cfgmgr.h
index 90e4b19..727cc32 100644
--- a/src/lib/dhcpsrv/cfgmgr.h
+++ b/src/lib/dhcpsrv/cfgmgr.h
@@ -316,22 +316,22 @@ public:
     const isc::asiolink::IOAddress*
     getUnicast(const std::string& iface) const;
 
-
-    /// @brief sets whether server should send back client-id in DHCPv4
+    /// @brief Sets whether server should send back client-id in DHCPv4
     ///
     /// This is a compatibility flag. The default (true) is compliant with
     /// RFC6842. False is for backward compatibility.
     ///
     /// @param echo should the client-id be sent or not
-    void echoClientId(bool echo) {
+    void echoClientId(const bool echo) {
         echo_v4_client_id_ = echo;
     }
 
-    /// @brief returns whether server should send back client-id in DHCPv4
-    /// @param returns whether v4 client-id should be returned or not
+    /// @brief Returns whether server should send back client-id in DHCPv4.
+    /// @return true if client-id should be returned, false otherwise.
     bool echoClientId() const {
         return (echo_v4_client_id_);
     }
+
 protected:
 
     /// @brief Protected constructor.



More information about the bind10-changes mailing list