From: Tomek Mrugalski Date: Wed, 5 Jul 2017 14:27:38 +0000 (+0200) Subject: [5318] Minor corrections. X-Git-Tag: trac5227_base~8^2~1^2 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=7c296923c6ad92a64139da0844b727fe42ca5d13;p=thirdparty%2Fkea.git [5318] Minor corrections. --- diff --git a/doc/guide/ctrl-channel.xml b/doc/guide/ctrl-channel.xml index 9e64e53f97..8a0e7ad3b1 100644 --- a/doc/guide/ctrl-channel.xml +++ b/doc/guide/ctrl-channel.xml @@ -69,7 +69,7 @@ Kea 1.2.0 release and earlier had a limitation of 64kB on the maximum size of a command and a response sent over the unix - domain socket. This limitation has been removed after Kea 1.2.0 + domain socket. This limitation has been removed in Kea 1.3.0 release. diff --git a/src/lib/config/command_mgr.cc b/src/lib/config/command_mgr.cc index 9c60a9d32c..5c1d2b6ef3 100644 --- a/src/lib/config/command_mgr.cc +++ b/src/lib/config/command_mgr.cc @@ -54,7 +54,7 @@ public: /// for data transmission. /// @param connection_pool Reference to the connection pool to which this /// connection belongs. - /// @param timeout Connection timeout. + /// @param timeout Connection timeout (in seconds). Connection(const IOServicePtr& io_service, const boost::shared_ptr& socket, ConnectionPool& connection_pool, @@ -151,7 +151,7 @@ public: /// @brief Handler invoked when the data is sent over the control socket. /// - /// If there are still data to be sent another asynchronous send is + /// If there are still data to be sent, another asynchronous send is /// scheduled. When the entire command is sent, the connection is shutdown /// and closed. /// @@ -162,7 +162,7 @@ public: /// @brief Handler invoked when timeout has occurred. /// - /// Asynchrnously Sends a response to the client indicating that the + /// Asynchronously sends a response to the client indicating that the /// timeout has occurred. void timeoutHandler(); @@ -174,7 +174,7 @@ private: /// @brief Interval timer used to detect connection timeouts. IntervalTimer timeout_timer_; - /// @brief Connection timeout. + /// @brief Connection timeout (in seconds) unsigned short timeout_; /// @brief Buffer used for received data.