mirror of
https://github.com/yggdrasil-network/yggdrasil-go.git
synced 2025-04-28 22:25:07 +03:00
don't update recv time for known nodes that ping us or known peers
This commit is contained in:
parent
c0531627bc
commit
671c7f2a47
2 changed files with 6 additions and 2 deletions
|
@ -180,7 +180,7 @@ func (t *dht) handleReq(req *dhtReq) {
|
|||
coords: req.Coords,
|
||||
}
|
||||
imp := t.getImportant()
|
||||
if t.isImportant(&info, imp) {
|
||||
if _, isIn := t.table[*info.getNodeID()]; !isIn || t.isImportant(&info, imp) {
|
||||
t.insert(&info)
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue