mirror of
https://github.com/yggdrasil-network/yggdrasil-go.git
synced 2025-04-28 14:15:06 +03:00
possible fix if monotonic time resolution is related to packet reordering
This commit is contained in:
parent
3e07995518
commit
98339cdc3f
1 changed files with 2 additions and 2 deletions
|
@ -808,12 +808,12 @@ func (t *switchTable) _handleIdle(port switchPort) bool {
|
|||
packet := buf.packets[0]
|
||||
coords := switch_getPacketCoords(packet.bytes)
|
||||
priority := float64(now.Sub(packet.time)) / float64(buf.size)
|
||||
if priority > bestPriority && t.portIsCloser(coords, port) {
|
||||
if priority >= bestPriority && t.portIsCloser(coords, port) {
|
||||
best = streamID
|
||||
bestPriority = priority
|
||||
}
|
||||
}
|
||||
if bestPriority != 0 {
|
||||
if best != "" {
|
||||
buf := t.queues.bufs[best]
|
||||
var packet switch_packetInfo
|
||||
// TODO decide if this should be LIFO or FIFO
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue