4
0
mirror of https://github.com/cwinfo/yggdrasil-go.git synced 2025-07-30 23:33:44 +00:00

Update handler behavior

This commit is contained in:
Neil Alexander
2019-01-05 01:02:22 +00:00
parent 1170ea9e98
commit 90366dd853

View File

@@ -102,7 +102,10 @@ func (ai *awdlInterface) handler() {
ai.peer.handlePacket(r) ai.peer.handlePacket(r)
case <-ai.shutdown: case <-ai.shutdown:
return return
default: case p := <-ai.peer.linkOut:
ai.send <- p
ai.awdl.core.switchTable.idleIn <- ai.peer.port
continue
} }
} }
} }