Change the way TCP failover is invoked.

This commit is contained in:
Adam Ierymenko 2014-03-26 16:44:58 -07:00
parent 04169b5150
commit e6b23059ac
2 changed files with 11 additions and 18 deletions

View file

@ -87,19 +87,6 @@ public:
return ((_addr)&&((_fixed)||((now - _lastReceived) < ZT_PEER_PATH_ACTIVITY_TIMEOUT)));
}
/**
* @return True if it appears that a ping has gone unanswered
*/
inline bool pingUnanswered(uint64_t now) const
throw()
{
uint64_t lp = _lastPing;
uint64_t lr = _lastReceived;
if (lp)
return ((lr < lp)&&((lp - lr) > ZT_PING_UNANSWERED_AFTER));
return false;
}
/**
* @return Human-readable address and other information about this path, some computed as of current time
*/