Browse code

Minor reliability layer documentation fixes

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>

Gert van Dijk authored on 2018/07/18 23:27:51
Showing 3 changed files
... ...
@@ -134,7 +134,7 @@
134 134
  * without wasting resources on attempting a TLS handshake which will
135 135
  * ultimately fail.
136 136
  *
137
- * @subsection network_protocol_control_key_methods Control channel key methods and
137
+ * @subsection network_protocol_control_key_methods Control channel key methods
138 138
  *
139 139
  * Once the TLS session has been initialized and authenticated, the TLS
140 140
  * channel is used to exchange random %key material for bidirectional
... ...
@@ -3660,8 +3660,8 @@ tls_pre_decrypt(struct tls_multi *multi,
3660 3660
             }
3661 3661
 
3662 3662
             /*
3663
-             * We have an authenticated packet (if --tls-auth was set).
3664
-             * Now pass to our reliability level which deals with
3663
+             * We have an authenticated control channel packet (if --tls-auth was set).
3664
+             * Now pass to our reliability layer which deals with
3665 3665
              * packet acknowledgements, retransmits, sequencing, etc.
3666 3666
              */
3667 3667
             {
... ...
@@ -76,7 +76,7 @@
76 76
 /*
77 77
  * Define number of buffers for send and receive in the reliability layer.
78 78
  */
79
-#define TLS_RELIABLE_N_SEND_BUFFERS  4 /* also window size for reliablity layer */
79
+#define TLS_RELIABLE_N_SEND_BUFFERS  4 /* also window size for reliability layer */
80 80
 #define TLS_RELIABLE_N_REC_BUFFERS   8
81 81
 
82 82
 /*