On Fri, 2018-10-26 at 10:07 +0100, Matt Caswell wrote:
> How did you generate this error string? It looks like you might have
> taken the return value (5) from SSL_get_error() and stuffed it into
> ERR_error_string() or a similar function. That would give you output
> like this - but is the incorr
On 24/10/2018 23:34, Skip Carter wrote:
> I have a server-side application that fails when some clients connect:
>
> waiting for SSL accept()...
> SSL_accept() (0) failure -1
> SSL_accept() (1) failure 5
How did you obtain the error number 5? Is this the return value from
SSL_get_error()? If so
On Thu, 2018-10-25 at 19:58 +0200, Jakob Bohm via openssl-users wrote:
> First, note the OpenSSL FAQ about how to turn on readable error
> messages.
I am already using the ERR_error_string(), but the result is still
opaque to me.
Error string : error:0005:lib(0):func(0):DH lib
The FAQ says
On 25/10/2018 00:34, Skip Carter wrote:
I have a server-side application that fails when some clients connect:
waiting for SSL accept()...
SSL_accept() (0) failure -1
SSL_accept() (1) failure 5
[DEBUG] Error string : error:0005:lib(0):func(0):DH lib
SSL_accept() sockerrno is: 0
I think