Documentation on using the SSL library with non-blocking I/O.

This commit is contained in:
Bodo Möller
2000-11-17 10:25:46 +00:00
parent db70a3fd6e
commit b1d6e3f551
2 changed files with 16 additions and 1 deletions

View File

@@ -65,7 +65,7 @@ TLS/SSL I/O function should be retried.
Caveat: Any TLS/SSL I/O function can lead to either of
B<SSL_ERROR_WANT_READ> and B<SSL_ERROR_WANT_WRITE>. In particular,
SSL_read() may want to write data and SSL_write() may want to read
data. This is because TLS/SSL handshakes may occur at any time
data. This is mainly because TLS/SSL handshakes may occur at any time
during the protocol (initiated by either the client or the server);
SSL_read() and SSL_write() will handle any pending handshakes.