don't update recv time for known nodes that ping us or known peers

This commit is contained in:
Arceliar 2018-10-28 15:04:44 -05:00
parent c0531627bc
commit 671c7f2a47
2 changed files with 6 additions and 2 deletions

View file

@ -91,8 +91,12 @@ func (r *router) mainLoop() {
case p := <-r.send:
r.sendPacket(p)
case info := <-r.core.dht.peers:
now := time.Now()
oldInfo, isIn := r.core.dht.table[*info.getNodeID()]
r.core.dht.insert(info)
info.throttle = 0
if isIn && now.Sub(oldInfo.recv) < 45*time.Second {
info.recv = oldInfo.recv
}
case <-r.reset:
r.core.sessions.resetInits()
r.core.dht.reset()