]> git.ipfire.org Git - thirdparty/kea.git/commitdiff
[#1735] Additional review comments
authorThomas Markwalder <tmark@isc.org>
Wed, 14 Apr 2021 11:22:38 +0000 (07:22 -0400)
committerThomas Markwalder <tmark@isc.org>
Wed, 14 Apr 2021 11:49:54 +0000 (07:49 -0400)
More cosmetics, doxygen fixes.

doc/sphinx/arm/hooks-ha.rst
src/hooks/dhcp/high_availability/ha_config.h

index daf8c9657ddc6f354dc5ad82e240d85a673bd9a2..8ac3f896d987dfe6bf4f6f64eb16c8b66a6013aa 100644 (file)
@@ -1453,7 +1453,7 @@ capability:
 
 -  ``enable-multi-threading`` - enables or disables HA+MT
 
--  ``http-dedicated-listener`` - enables or disabled the creation of a dedicated HTTP
+-  ``http-dedicated-listener`` - enables or disables the creation of a dedicated HTTP
    listener the server will use to receive HA messages from its peers.
 
 -  ``http-listener-threads`` - maximum number of threads the dedicated listener
index fede5a90f6d9be29ea4268fdde9dcd0b6c6050bc..b730b80f292372d191892c2da08cdadc6220d503 100644 (file)
@@ -526,7 +526,7 @@ public:
 
     /// @brief Sets whether or not server is configured for multi-threaded operation.
     ///
-    /// @param http_enabled boolean flag that enables multi-threaded operation
+    /// @param enable_multi_threading boolean flag that enables multi-threaded operation
     /// when true.
     void setEnableMultiThreading(bool enable_multi_threading) {
         enable_multi_threading_ = enable_multi_threading;
@@ -561,12 +561,12 @@ public:
 
     /// @brief Sets the number of threads the HTTP listener should use.
     ///
-    /// @return number of threads the listener should use.
+    /// @param http_listener_threads number of threads the listener should use.
     void setHttpListenerThreads(uint32_t http_listener_threads) {
         http_listener_threads_ = http_listener_threads;
     }
 
-    /// @brief Fetches the number of threads the HTTP Client should use.
+    /// @brief Fetches the number of threads the HTTP client should use.
     ///
     /// @return number of threads the client is configured to use.
     uint32_t getHttpClientThreads() {
@@ -575,7 +575,7 @@ public:
 
     /// @brief Sets the number of threads the HTTP client should use.
     ///
-    /// @return number of threads the client should use.
+    /// @param http_client_threads number of threads the client should use.
     void setHttpClientThreads(uint32_t http_client_threads) {
         http_client_threads_ = http_client_threads;
     }