]> git.ipfire.org Git - thirdparty/kea.git/commitdiff
spelling: immediately
authorJosh Soref <jsoref@users.noreply.github.com>
Sun, 23 Jul 2017 17:23:55 +0000 (13:23 -0400)
committerJosh Soref <jsoref@users.noreply.github.com>
Sun, 23 Jul 2017 17:23:55 +0000 (13:23 -0400)
src/bin/keactrl/tests/keactrl_tests.sh.in
src/lib/asiolink/unix_domain_socket.h
src/lib/config/client_connection.cc

index 7627922e65912ddbe54b8b3377977c061f2fabec..dcd05583f507aca51d13a62119886860c2d7f583 100644 (file)
@@ -200,7 +200,7 @@ Expected wait_for_message return %d, returned %d."
     assert_eq 0 ${_GET_LOG_MESSAGES} \
         "Expected get_log_messages return %d, returned %d."
 
-    # Server may shut down imediatelly after configuration has completed.
+    # Server may shut down immediately after configuration has completed.
     # Give it some time to shutdown.
     sleep 3
 
@@ -317,7 +317,7 @@ Expected wait_for_message return %d, returned %d."
     assert_eq 2 ${_GET_LOG_MESSAGES} \
         "Expected get_log_messages for DCT_STANDALONE return %d, returned %d."
 
-    # Server may shut down imediatelly after configuration has completed.
+    # Server may shut down immediately after configuration has completed.
     # Give it some time to shutdown.
     sleep 3
 
@@ -400,7 +400,7 @@ dhcp_ddns=no\nctrl_agent=no\nkea_verbose=no\n${keactrl_fixed_config}"
         "Timeout waiting for ${kea4_name} to start. \
 Expected wait_for_message return %d, returned %d."
 
-    # Server may shut down imediatelly after configuration has completed.
+    # Server may shut down immediately after configuration has completed.
     # Give it some time to shutdown.
     sleep 3
 
@@ -488,7 +488,7 @@ dhcp_ddns=no\nctrl_agent=no\nkea_verbose=no\n${keactrl_fixed_config}"
         "Timeout waiting for ${kea6_name} to start. \
 Expected wait_for_message return %d, returned %d."
 
-    # Server may shut down imediatelly after configuration has completed.
+    # Server may shut down immediately after configuration has completed.
     # Give it some time to shutdown.
     sleep 3
 
@@ -576,7 +576,7 @@ dhcp_ddns=no\nctrl_agent=no\nkea_verbose=no\n${keactrl_fixed_config}"
         "Timeout waiting for ${kea6_name} to start. \
 Expected wait_for_message return %d, returned %d."
 
-    # Server may shut down imediatelly after configuration has completed.
+    # Server may shut down immediately after configuration has completed.
     # Give it some time to shutdown.
     sleep 3
 
@@ -739,7 +739,7 @@ dhcp_ddns=no\nctrl_agent=yes\nkea_verbose=yes\n${keactrl_fixed_config}"
         "Timeout waiting for ${kea4_name} to start. \
 Expected wait_for_message return %d, returned %d."
 
-    # Server may shut down imediatelly after configuration has completed.
+    # Server may shut down immediately after configuration has completed.
     # Give it some time to shutdown.
     sleep 3
 
@@ -926,7 +926,7 @@ Expected wait_for_message return %d, returned %d."
     assert_eq 0 ${_GET_LOG_MESSAGES} \
     "Expected get_log_messages return %d, returned %d."
 
-    # Server may shut down imediatelly after configuration has completed.
+    # Server may shut down immediately after configuration has completed.
     # Give it some time to shutdown.
     sleep 3
 
index e7efe6b1f343ef8e853e096a5029c8c9c8d2a694..cd02f41e5694e019e7d10c9459f0d5d9fc8de7bd 100644 (file)
@@ -58,7 +58,7 @@ public:
 
     /// @brief Asynchronously connects the socket to the specified endpoint.
     ///
-    /// Always returns immediatelly.
+    /// Always returns immediately.
     ///
     /// @param path Path to the unix socket to which we should connect.
     /// @param handler Callback to be invoked when connection is established or
@@ -76,7 +76,7 @@ public:
 
     /// @brief Asynchronously sends data over the socket.
     ///
-    /// Always returns immediatelly.
+    /// Always returns immediately.
     ///
     /// @param data Pointer to data to be sent.
     /// @param length Number of bytes to be sent.
@@ -96,7 +96,7 @@ public:
 
     /// @brief Asynchronously receives data over the socket.
     ///
-    /// Always returns immediatelly.
+    /// Always returns immediately.
     /// @param [out] data Pointer to a location into which the read data should
     /// be stored.
     /// @param length Length of the buffer.
index 9701669b7039e771ab0835ffd68566ea4627766f..8625b07f00d78c1d237ae0e3f90ef56caf093113 100644 (file)
@@ -124,7 +124,7 @@ ClientConnectionImpl::start(const ClientConnection::SocketPath& socket_path,
     // Pass self to lambda to make sure that the instance of this class
     // lives as long as the lambda is held for async connect.
     auto self(shared_from_this());
-    // Start asynchronous connect. This will return immediatelly.
+    // Start asynchronous connect. This will return immediately.
     socket_.asyncConnect(socket_path.socket_path_,
     [this, self, command, handler](const boost::system::error_code& ec) {
         // We failed to connect so we can't proceed. Simply clean up
@@ -149,7 +149,7 @@ ClientConnectionImpl::doSend(const void* buffer, const size_t length,
     // lives as long as the lambda is held for async send.
     auto self(shared_from_this());
     // Start asynchronous transmission of the command. This will return
-    // immediatelly.
+    // immediately.
     socket_.asyncSend(buffer, length,
         [this, self, buffer, length, handler]
         (const boost::system::error_code& ec, size_t bytes_transferred) {