diff options
author | Razvan Becheriu <razvan@isc.org> | 2020-08-19 09:47:18 +0200 |
---|---|---|
committer | Razvan Becheriu <razvan@isc.org> | 2020-08-20 19:26:52 +0200 |
commit | d5cf1467d6d19409fc2643ac3042629960f1dc62 (patch) | |
tree | 4172195922b5a30c22ae292f55517c0ac3fcee29 /src/lib/http/client.h | |
parent | [#757] fixed documentation (diff) | |
download | kea-d5cf1467d6d19409fc2643ac3042629960f1dc62.tar.xz kea-d5cf1467d6d19409fc2643ac3042629960f1dc62.zip |
[#1272] replaced out-of-bandwidth with out-of-bound and added other minor doxygen fixes
Diffstat (limited to 'src/lib/http/client.h')
-rw-r--r-- | src/lib/http/client.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/lib/http/client.h b/src/lib/http/client.h index 9b9aff751f..b772300e47 100644 --- a/src/lib/http/client.h +++ b/src/lib/http/client.h @@ -191,7 +191,7 @@ public: /// @brief Closes all connections. void stop(); - /// @brief Closes a connection if it has an out-of-bandwidth socket event + /// @brief Closes a connection if it has an out-of-band socket event /// /// If the client owns a connection using the given socket and that /// connection is currently in a transaction the method returns as this @@ -199,11 +199,11 @@ public: /// ongoing transaction, then the connection is closed. /// /// This is method is intended to be used to detect and clean up then - /// sockets that are marked ready outside of transactions. The most comman + /// sockets that are marked ready outside of transactions. The most common /// case is the other end of the socket being closed. /// /// @param socket_fd socket descriptor to check - void closeIfOutOfBandwidth(int socket_fd); + void closeIfOutOfBand(int socket_fd); private: |