From: Tomek Mrugalski Date: Fri, 8 Jul 2022 15:32:40 +0000 (+0200) Subject: [#2454] More Doxygen warnings fixed X-Git-Tag: Kea-2.2.0~34 X-Git-Url: http://git.ipfire.org/gitweb/gitweb.cgi?a=commitdiff_plain;h=7a9388fd98fa9184d447465fef7a12063609cbe5;p=thirdparty%2Fkea.git [#2454] More Doxygen warnings fixed --- diff --git a/src/bin/perfdhcp/test_control.h b/src/bin/perfdhcp/test_control.h index 9524bc7e5f..caa3f298ff 100644 --- a/src/bin/perfdhcp/test_control.h +++ b/src/bin/perfdhcp/test_control.h @@ -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. /// diff --git a/src/hooks/dhcp/high_availability/communication_state.h b/src/hooks/dhcp/high_availability/communication_state.h index ff929598d0..33824c1ce9 100644 --- a/src/hooks/dhcp/high_availability/communication_state.h +++ b/src/hooks/dhcp/high_availability/communication_state.h @@ -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); diff --git a/src/lib/dhcpsrv/parsers/option_data_parser.h b/src/lib/dhcpsrv/parsers/option_data_parser.h index baaad0d6f2..a21cdf2c45 100644 --- a/src/lib/dhcpsrv/parsers/option_data_parser.h +++ b/src/lib/dhcpsrv/parsers/option_data_parser.h @@ -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 diff --git a/src/lib/http/http_thread_pool.h b/src/lib/http/http_thread_pool.h index aa457dc0b7..e6caf4693e 100644 --- a/src/lib/http/http_thread_pool.h +++ b/src/lib/http/http_thread_pool.h @@ -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,