2
0
mirror of https://gitlab.isc.org/isc-projects/kea synced 2025-08-30 13:37:55 +00:00

[#741,!428] Fixed doxygen errors

Fixed two minor doxygen errors:
    src/hooks/dhcp/high_availability/ha_service.h
    src/lib/http/client.h
This commit is contained in:
Thomas Markwalder
2019-07-19 10:16:40 -04:00
parent 35e8cf3789
commit d31ec7ab33
2 changed files with 3 additions and 1 deletions

View File

@@ -734,7 +734,7 @@ protected:
/// ///
/// @param ec Error status of the ASIO connect /// @param ec Error status of the ASIO connect
/// @param tcp_native_fd socket descriptor to register /// @param tcp_native_fd socket descriptor to register
/// @param returns true. Registeration cannot fail, and if ec indicates a real /// @return always true. Registeration cannot fail, and if ec indicates a real
/// error we want Connection logic to process it. /// error we want Connection logic to process it.
bool clientConnectHandler(const boost::system::error_code& ec, int tcp_native_fd); bool clientConnectHandler(const boost::system::error_code& ec, int tcp_native_fd);

View File

@@ -173,6 +173,8 @@ public:
/// @param request_timeout Timeout for the transaction in milliseconds. /// @param request_timeout Timeout for the transaction in milliseconds.
/// @param connect_callback Optional callback invoked when the client /// @param connect_callback Optional callback invoked when the client
/// connects to the server. /// connects to the server.
/// @param close_callback Optional callback invoked when the client
/// closes the connection to the server.
/// ///
/// @throw HttpClientError If invalid arguments were provided. /// @throw HttpClientError If invalid arguments were provided.
void asyncSendRequest(const Url& url, void asyncSendRequest(const Url& url,