Merge branch 'master' of ssh://github.com/majestrate/loki-network

pull/792/head
Jeff Becker 5 years ago
commit b9cb59f021
No known key found for this signature in database
GPG Key ID: F357B3B42F6F9B05

@ -19,9 +19,8 @@ namespace llarp
Session::IsExpired(llarp_time_t now, llarp_time_t lifetime) const Session::IsExpired(llarp_time_t now, llarp_time_t lifetime) const
{ {
if(now <= lastUsed) if(now <= lastUsed)
return intro.IsExpired(now) || replyIntro.IsExpired(now); return intro.IsExpired(now);
return now - lastUsed > lifetime || intro.IsExpired(now) return now - lastUsed > lifetime || intro.IsExpired(now);
|| replyIntro.IsExpired(now);
} }
} // namespace service } // namespace service

Loading…
Cancel
Save