From: Lutz Jänicke Date: Wed, 16 May 2001 09:46:47 +0000 (+0000) Subject: Add missing item SSL_ERROR_WANT_CONNECT. X-Git-Tag: OpenSSL_0_9_6b~24 X-Git-Url: https://git.librecmc.org/?a=commitdiff_plain;h=c62ddfbb6e90bcf29e832e26e12d3801bddcb21f;p=oweals%2Fopenssl.git Add missing item SSL_ERROR_WANT_CONNECT. --- diff --git a/doc/ssl/SSL_get_error.pod b/doc/ssl/SSL_get_error.pod index fefaf61936..d95eec78aa 100644 --- a/doc/ssl/SSL_get_error.pod +++ b/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