made it so a negative kHeartRate disables heartbeats and set

kHeartRate to -1.
This commit is contained in:
crs
2002-07-30 18:49:31 +00:00
parent da361e9686
commit 0d70150589
3 changed files with 7 additions and 7 deletions

View File

@@ -80,12 +80,10 @@ CClientProxy1_0::mainLoop()
// check if client has stopped sending heartbeats
if (n == (UInt32)-1) {
/* FIXME -- disabled to avoid masking bugs
if (heartTimer.getTime() > kHeartDeath) {
if (kHeartDeath >= 0.0 && heartTimer.getTime() > kHeartDeath) {
log((CLOG_NOTE "client \"%s\" is dead", getName().c_str()));
return;
}
*/
continue;
}