]> git.ipfire.org Git - thirdparty/openvpn.git/commitdiff
Minor reliability layer documentation fixes
authorGert van Dijk <gert.vandijk@fox-it.com>
Wed, 18 Jul 2018 14:27:51 +0000 (16:27 +0200)
committerGert Doering <gert@greenie.muc.de>
Wed, 18 Jul 2018 17:36:54 +0000 (19:36 +0200)
Signed-off-by: Steffan Karger <steffan.karger@fox-it.com>
Acked-by: Gert Doering <gert@greenie.muc.de>
Message-Id: <1531924073-29243-2-git-send-email-steffan.karger@fox-it.com>
URL: https://www.mail-archive.com/openvpn-devel@lists.sourceforge.net/msg17260.html
Signed-off-by: Gert Doering <gert@greenie.muc.de>
doc/doxygen/doc_protocol_overview.h
src/openvpn/ssl.c
src/openvpn/ssl.h

index db24d3b44e05a7c12657d01482d7e01d6cd35bb6..3f48b18a63fe112ec158a3ffdc86c30615832e0f 100644 (file)
  * without wasting resources on attempting a TLS handshake which will
  * ultimately fail.
  *
- * @subsection network_protocol_control_key_methods Control channel key methods and
+ * @subsection network_protocol_control_key_methods Control channel key methods
  *
  * Once the TLS session has been initialized and authenticated, the TLS
  * channel is used to exchange random %key material for bidirectional
index 669f941b37863549dc163c47c9567e27f2975ecf..dcb54456d3ca111b0495efac1c5bb616aad06079 100644 (file)
@@ -3660,8 +3660,8 @@ tls_pre_decrypt(struct tls_multi *multi,
             }
 
             /*
-             * We have an authenticated packet (if --tls-auth was set).
-             * Now pass to our reliability level which deals with
+             * We have an authenticated control channel packet (if --tls-auth was set).
+             * Now pass to our reliability layer which deals with
              * packet acknowledgements, retransmits, sequencing, etc.
              */
             {
index a2501c9b5941f7a247e5cacdd5272dad00a4ea4d..72227d9710dc63142a9d85cb449cb6a35be2f913 100644 (file)
@@ -76,7 +76,7 @@
 /*
  * Define number of buffers for send and receive in the reliability layer.
  */
-#define TLS_RELIABLE_N_SEND_BUFFERS  4 /* also window size for reliablity layer */
+#define TLS_RELIABLE_N_SEND_BUFFERS  4 /* also window size for reliability layer */
 #define TLS_RELIABLE_N_REC_BUFFERS   8
 
 /*