]> git.ipfire.org Git - thirdparty/kea.git/commitdiff
[#2454] More Doxygen warnings fixed
authorTomek Mrugalski <tomek@isc.org>
Fri, 8 Jul 2022 15:32:40 +0000 (17:32 +0200)
committerTomek Mrugalski <tomek@isc.org>
Thu, 21 Jul 2022 09:00:54 +0000 (09:00 +0000)
src/bin/perfdhcp/test_control.h
src/hooks/dhcp/high_availability/communication_state.h
src/lib/dhcpsrv/parsers/option_data_parser.h
src/lib/http/http_thread_pool.h

index 9524bc7e5fc5b7c6f06b19794512a8b94ec7e21a..caa3f298fff5efe003eff5ed91a5dbe04b9c81d8 100644 (file)
@@ -352,6 +352,7 @@ protected:
 
     /// \brief Creates DHCPREQUEST from a DHCPACK message.
     ///
+    /// @param msg_type the message type to be created (DHCPREQUEST or DHCPRELEASE)
     /// \param ack An instance of the DHCPACK message to be used to
     /// create a new message.
     ///
index ff929598d07b57278b293837a056bd1bfede0b8d..33824c1ce980a0822da68b3a9cb46423c3a34f14 100644 (file)
@@ -508,7 +508,7 @@ public:
 
     /// @brief Saves new total number of unsent lease updates from the partner.
     ///
-    /// @param unsent_updates_count new total number of unsent lease updates from
+    /// @param unsent_update_count new total number of unsent lease updates from
     /// the partner.
     void setPartnerUnsentUpdateCount(uint64_t unsent_update_count);
 
@@ -516,7 +516,7 @@ private:
 
     /// @brief Thread unsafe implementation of the @c setPartnerUnsentUpdateCount.
     ///
-    /// @param unsent_updates_count new total number of unsent lease updates from
+    /// @param unsent_update_count new total number of unsent lease updates from
     /// the partner.
     void setPartnerUnsentUpdateCountInternal(uint64_t unsent_update_count);
 
index baaad0d6f22a806f9d38f7972f3aa2b23522a699..a21cdf2c453928c467c219df730790da3d448562 100644 (file)
@@ -95,8 +95,8 @@ protected:
     /// @brief Create option instance.
     ///
     /// Creates an instance of an option and adds it to the provided
-    /// options storage. If the option data parsed by \ref build function
-    /// are invalid or insufficient this function emits an exception.
+    /// options storage. If the option data parsed by createOption function
+    /// is invalid or insufficient this function emits an exception.
     ///
     /// If the option data is given as a string containing a hexadecimal
     /// literal, then it is converted into binary format.  These literals
index aa457dc0b7159fefbc911f0e88196842c348b774..e6caf4693e5115e80afb4e267f7ebb0622a19934 100644 (file)
@@ -37,7 +37,7 @@ public:
     /// @param pool_size Maximum number of threads in the pool.  Currently the
     /// number of threads is fixed at this value.
     /// @param defer_start If true, creation of the threads is deferred until
-    /// a subsequent call to @ref start().  In this case the pool's operational
+    /// a subsequent call to @ref run().  In this case the pool's operational
     /// state post construction is STOPPED.  If false, the constructor will
     /// invoke run() to transition the pool into the RUNNING state.
     HttpThreadPool(asiolink::IOServicePtr io_service, size_t pool_size,