mirror of
https://github.com/RetroShare/RetroShare.git
synced 2024-12-14 18:34:29 -05:00
Revert "add a quiet shutdown when SSL_ERROR_SYSCALL is raised"
This reverts commit 7b8310ff019a9d81ada9d11a7aeceec8c50c9ee0. git-svn-id: http://svn.code.sf.net/p/retroshare/code/trunk@1898 b45a01b8-16f6-495d-af2f-9b41ad6348cc
This commit is contained in:
parent
039e41356c
commit
89ab9b1553
@ -96,7 +96,7 @@ pqissl::pqissl(pqissllistener *l, PQInterface *parent, p3AuthMgr *am, p3ConnectM
|
||||
net_attempt(0), net_failure(0), net_unreachable(0),
|
||||
sameLAN(false), n_read_zero(0),
|
||||
mConnectDelay(0), mConnectTS(0),
|
||||
mConnectTimeout(0), mTimeoutTS(0), quietShutdown(false),
|
||||
mConnectTimeout(0), mTimeoutTS(0),
|
||||
|
||||
/**************** PQI_USE_XPGP ******************/
|
||||
#if defined(PQI_USE_XPGP)
|
||||
@ -213,19 +213,14 @@ int pqissl::reset()
|
||||
out << "\tssl_con: " << ssl_connection << std::endl;
|
||||
out << std::endl;
|
||||
|
||||
bool neededReset = false;
|
||||
bool neededReset = false;
|
||||
|
||||
if (ssl_connection != NULL && sockfd > 0)
|
||||
if (ssl_connection != NULL)
|
||||
{
|
||||
out << "pqissl::reset() Shutting down SSL Connection";
|
||||
out << std::endl;
|
||||
if (quietShutdown) {
|
||||
ssl_connection->quiet_shutdown;
|
||||
} else {
|
||||
SSL_shutdown(ssl_connection);
|
||||
}
|
||||
SSL_shutdown(ssl_connection);
|
||||
|
||||
quietShutdown = false;
|
||||
neededReset = true;
|
||||
}
|
||||
|
||||
@ -1379,7 +1374,6 @@ int pqissl::senddata(void *data, int len)
|
||||
out << std::endl;
|
||||
std::cerr << out.str() ;
|
||||
rslog(RSL_ALERT, pqisslzone, out.str());
|
||||
quietShutdown = true;
|
||||
reset();
|
||||
return -1;
|
||||
}
|
||||
@ -1499,8 +1493,7 @@ int pqissl::readdata(void *data, int len)
|
||||
out << "Socket Closed Abruptly.... Resetting PQIssl";
|
||||
out << std::endl;
|
||||
rslog(RSL_ALERT, pqisslzone, out.str());
|
||||
quietShutdown = true;
|
||||
reset();
|
||||
reset();
|
||||
std::cerr << out.str() << std::endl ;
|
||||
return -1;
|
||||
}
|
||||
|
@ -203,7 +203,6 @@ virtual int net_internal_fcntl_nonblock(int fd) { return unix_fcntl_nonblock(fd)
|
||||
time_t mConnectTS;
|
||||
uint32_t mConnectTimeout;
|
||||
time_t mTimeoutTS;
|
||||
bool quietShutdown;
|
||||
|
||||
/* Need Certificate specific functions here! */
|
||||
/**************** PQI_USE_XPGP ******************/
|
||||
|
Loading…
Reference in New Issue
Block a user