5
0
mirror of https://github.com/cwinfo/yggdrasil-go.git synced 2024-11-10 05:10:26 +00:00

test a change to how switch hops are selected when multiple links are idle

This commit is contained in:
Arceliar 2019-08-14 17:57:36 -05:00
parent 2abb71682f
commit 1a2b7a8b60

View File

@ -676,7 +676,8 @@ func (t *switchTable) handleIn(packet []byte, idle map[switchPort]time.Time) boo
update = true
case cinfo.dist > bestDist:
//nothing
case thisTime.Before(bestTime):
case thisTime.After(bestTime):
// Pick the one that was used most recently -- at least this should pick the same link consistently in low-traffic scenarios
update = true
default:
//nothing