> From: owner-openssl-us...@openssl.org On Behalf Of Pingzhong Li
> Sent: Friday, 04 March, 2011 16:11
> During a TLS handshake, SSL_get_error call failed and the
> error string is retrieved by using the following call:
> int sslerror = ERR_get_error();
>
On 3/3/2011 6:50 AM, ikuzar wrote:
Hello,
I have got a SSL_ERROR_WANT_READ after a call to SSL_connect. I 'd like
to know what should I do exactly ?
Thanks
Retry the connect operation later, ideally after confirming that the
underlying socket is readable.
DS
___
During a TLS handshake, SSL_get_error call failed and the error string is
retrieved by using
the following call:
int sslerror = ERR_get_error();
char buf[120];
char * szError = ERR_error_string(sslerror, buf);
What does
prakgen wrote:
Thanks Steve. This happened on a system with Intel dual core 2.4ghz
processor and 2gig ram. Is the observed cpu pattern expected on such
platforms? You mentioned it will be less painful after upcoming
validation. Do you mean change in implementation for speedier self-tests?
...