Closed Yaribz closed 1 year ago
In the stop_SSL function, the workflow for sockets in blocking mode wrongly checks for SSL_WANT_READ twice instead of checking for SSL_WANT_READ and SSL_WANT_WRITE to perform the correct select operation.
stop_SSL
SSL_WANT_READ
SSL_WANT_WRITE
select
In the
stop_SSL
function, the workflow for sockets in blocking mode wrongly checks forSSL_WANT_READ
twice instead of checking forSSL_WANT_READ
andSSL_WANT_WRITE
to perform the correctselect
operation.