added missing call to SSL_pending, which caused decrypted data to wait in the SSL buffer when the bio is not receiving anything more

This commit is contained in:
csoler 2016-04-29 17:53:21 -04:00
parent a4430647de
commit 654e0fc1d8
4 changed files with 8 additions and 5 deletions

View file

@ -47,7 +47,6 @@ int rsserverzone = 101;
/****
#define DEBUG_TICK 1
****/
#define DEBUG_TICK 1
#define WARN_BIG_CYCLE_TIME (0.2)
#ifdef WINDOWS_SYS
@ -140,8 +139,6 @@ void RsServer::data_tick()
double ts = getCurrentTS();
double delta = ts - mLastts;
std::cerr << "[data tick] delta = " << delta << std::endl;
/* for the fast ticked stuff */
if (delta > mTimeDelta)
{