summaryrefslogtreecommitdiff
path: root/louloulibs
diff options
context:
space:
mode:
authorFlorent Le Coz <louiz@louiz.org>2015-07-08 18:51:05 +0200
committerFlorent Le Coz <louiz@louiz.org>2015-07-08 18:51:05 +0200
commit0af536a2be6d23fa221f61a77e89436b8fb2a015 (patch)
tree1321ff54baadb8d7e5e7bf9fdc9cb5839cf57359 /louloulibs
parent810ea19fe32c64a93bbe15b9b10541259bcc9321 (diff)
downloadbiboumi-0af536a2be6d23fa221f61a77e89436b8fb2a015.tar.gz
biboumi-0af536a2be6d23fa221f61a77e89436b8fb2a015.tar.bz2
biboumi-0af536a2be6d23fa221f61a77e89436b8fb2a015.tar.xz
biboumi-0af536a2be6d23fa221f61a77e89436b8fb2a015.zip
Minor comment typo
Diffstat (limited to 'louloulibs')
-rw-r--r--louloulibs/network/tcp_socket_handler.hpp10
1 files changed, 5 insertions, 5 deletions
diff --git a/louloulibs/network/tcp_socket_handler.hpp b/louloulibs/network/tcp_socket_handler.hpp
index 2b5cd49..0dde2cf 100644
--- a/louloulibs/network/tcp_socket_handler.hpp
+++ b/louloulibs/network/tcp_socket_handler.hpp
@@ -272,11 +272,11 @@ private:
static Botan::TLS::Session_Manager_In_Memory session_manager;
/**
* We use a unique_ptr because we may not want to create the object at
- * all. The Botan::TLS::Client object generates a handshake message as
- * soon and calls the output_fn callback with it as soon as it is
- * created. Therefore, we do not want to create it if do not intend to do
- * send any TLS-encrypted message. We create the object only when needed
- * (for example after we have negociated a TLS session using a STARTTLS
+ * all. The Botan::TLS::Client object generates a handshake message and
+ * calls the output_fn callback with it as soon as it is created.
+ * Therefore, we do not want to create it if we do not intend to send any
+ * TLS-encrypted message. We create the object only when needed (for
+ * example after we have negociated a TLS session using a STARTTLS
* message, or stuf like that).
*
* See start_tls for the method where this object is created.