-users] SSL_accept error code
On 08/03/16 01:04, Yan, Bob wrote:
> Hi All,
>
> I have a SSL server application which use SSL_accept to accept the
> connections from client, see the code below:
>
> int retcode = SSL_accept(mSsl);
> unsigned long error = SSL_ge
On 08/03/16 01:04, Yan, Bob wrote:
> Hi All,
>
> I have a SSL server application which use SSL_accept to accept the
> connections from client, see the code below:
>
> int retcode = SSL_accept(mSsl);
> unsigned long error = SSL_get_error(mSsl, retcode);
> ERR_error_string_n(error, errmsg, sizeo
Hi All,
I have a SSL server application which use SSL_accept to accept the connections
from client, see the code below:
int retcode = SSL_accept(mSsl);
unsigned long error = SSL_get_error(mSsl, retcode);
ERR_error_string_n(error, errmsg, sizeof(errmsg));
When something w