5
0
mirror of https://github.com/cwinfo/yggdrasil-go.git synced 2024-11-09 23:20:28 +00:00

larger out queue size, make sure linkOut packets always get sent first

This commit is contained in:
Arceliar 2018-06-22 23:46:42 -05:00
parent 0021f3463f
commit cceecf4b1a

View File

@ -242,7 +242,7 @@ func (iface *tcpInterface) handler(sock net.Conn, incoming bool) {
in := func(bs []byte) {
p.handlePacket(bs)
}
out := make(chan []byte, 1)
out := make(chan []byte, 1024) // Should be effectively infinite, but gets fed into finite LIFO stack
defer close(out)
go func() {
var shadow int64
@ -296,6 +296,7 @@ func (iface *tcpInterface) handler(sock net.Conn, incoming bool) {
select {
case msg := <-p.linkOut:
send <- msg
continue
default:
}
// Then block until we send or receive something