crypto: revert pull request #2130
The fix in #2130 eliminates the problem when connecting over a gateway but introduces other problems server side and client side (client/server can't detect anymore when a TCP connection was closed).
This commit is contained in:
parent
81a6c43938
commit
f338e1f6c3
@ -167,8 +167,7 @@ static int bio_rdp_tls_read(BIO* bio, char* buf, int size)
|
||||
case SSL_ERROR_SYSCALL:
|
||||
error = WSAGetLastError();
|
||||
if ((error == WSAEWOULDBLOCK) || (error == WSAEINTR) ||
|
||||
(error == WSAEINPROGRESS) || (error == WSAEALREADY) ||
|
||||
(error == 0))
|
||||
(error == WSAEINPROGRESS) || (error == WSAEALREADY))
|
||||
{
|
||||
BIO_set_flags(bio, (BIO_FLAGS_READ | BIO_FLAGS_SHOULD_RETRY));
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user