/// \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.
///
/// @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);
/// @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);
/// @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
/// @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,