diff options
| author | Kris Kennaway <kris@FreeBSD.org> | 2001-07-19 19:59:37 +0000 |
|---|---|---|
| committer | Kris Kennaway <kris@FreeBSD.org> | 2001-07-19 19:59:37 +0000 |
| commit | 26d191b459ef5c6e6f66683faef459d6cf694aa2 (patch) | |
| tree | 97ecedd5f90991a7abe96b7ca0cb51fa579341b5 /crypto/openssl/doc/ssl/SSL_get_error.pod | |
| parent | 5740a5e34c49bfc6885d8602958155fc91b62765 (diff) | |
Notes
Diffstat (limited to 'crypto/openssl/doc/ssl/SSL_get_error.pod')
| -rw-r--r-- | crypto/openssl/doc/ssl/SSL_get_error.pod | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/crypto/openssl/doc/ssl/SSL_get_error.pod b/crypto/openssl/doc/ssl/SSL_get_error.pod index fefaf619369a..d95eec78aa17 100644 --- a/crypto/openssl/doc/ssl/SSL_get_error.pod +++ b/crypto/openssl/doc/ssl/SSL_get_error.pod @@ -69,6 +69,17 @@ to read 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(), SSL_peek(), and SSL_write() will handle any pending handshakes. +=item SSL_ERROR_WANT_CONNECT + +The operation did not complete; the same TLS/SSL I/O function should be +called again later. The underlying BIO was not connected yet to the peer +and the call would block in connect(). The SSL function should be +called again when the connection is established. This messages can only +appear with a BIO_s_connect() BIO. +In order to find out, when the connection has been successfully established, +on many platforms select() or poll() for writing on the socket file descriptor +can be used. + =item SSL_ERROR_WANT_X509_LOOKUP The operation did not complete because an application callback set by |
