mirror of
https://github.com/RetroShare/RetroShare.git
synced 2025-05-06 08:05:18 -04:00
fixed "connexion refused by peer" message
This commit is contained in:
parent
d152d9f50c
commit
9790b98605
2 changed files with 2 additions and 3 deletions
|
@ -1096,8 +1096,7 @@ int pqissl::SSL_Connection_Complete()
|
|||
if (err != 1)
|
||||
{
|
||||
int serr = SSL_get_error(ssl_connection, err);
|
||||
if ((serr == SSL_ERROR_WANT_READ)
|
||||
|| (serr == SSL_ERROR_WANT_WRITE))
|
||||
if ((serr == SSL_ERROR_WANT_READ) || (serr == SSL_ERROR_WANT_WRITE))
|
||||
{
|
||||
#ifdef PQISSL_LOG_DEBUG
|
||||
rslog(RSL_DEBUG_BASIC, pqisslzone,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue