]> 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:41:15 +0000 (19:41 +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>
(cherry picked from commit df612f634a7e2e542e4393601520f7dbb0eb327f)

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 ab42f0c2c653642cfad146617b8892db3182b341..e9ffb93e5a370aaf46669aab5de690cf8369845c 100644 (file)
@@ -3664,8 +3664,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 132424e9bbdfe7474094b9e68014880ab8f641e1..7c5da1527d84dc9cde858da47545a3c3b162ea3a 100644 (file)
@@ -78,7 +78,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
 
 /*