mirror of
https://github.com/cwinfo/yggdrasil-go.git
synced 2024-11-22 15:20:30 +00:00
use a dedicated per-stream writer goroutine, send messages to it over a 1-buffered channel, this eliminates most of the false positive blocking that causes drops
This commit is contained in:
parent
527d443916
commit
15ac2595aa
@ -256,6 +256,11 @@ func (intf *linkInterface) handler() error {
|
||||
intf.link.core.log.Infof("Disconnected %s: %s, source %s",
|
||||
strings.ToUpper(intf.info.linkType), themString, intf.info.local)
|
||||
}
|
||||
intf.writer.Act(nil, func() {
|
||||
if intf.writer.worker != nil {
|
||||
close(intf.writer.worker)
|
||||
}
|
||||
})
|
||||
return err
|
||||
}
|
||||
|
||||
@ -429,6 +434,7 @@ func (intf *linkInterface) notifyDoKeepAlive() {
|
||||
type linkWriter struct {
|
||||
phony.Inbox
|
||||
intf *linkInterface
|
||||
worker chan [][]byte
|
||||
}
|
||||
|
||||
func (w *linkWriter) sendFrom(from phony.Actor, bss [][]byte, isLinkTraffic bool) {
|
||||
@ -437,8 +443,19 @@ func (w *linkWriter) sendFrom(from phony.Actor, bss [][]byte, isLinkTraffic bool
|
||||
for _, bs := range bss {
|
||||
size += len(bs)
|
||||
}
|
||||
w.intf.notifySending(size, isLinkTraffic)
|
||||
if w.worker == nil {
|
||||
w.worker = make(chan [][]byte, 1)
|
||||
go func() {
|
||||
for bss := range w.worker {
|
||||
w.intf.msgIO.writeMsgs(bss)
|
||||
}
|
||||
}()
|
||||
}
|
||||
w.intf.notifySending(size, isLinkTraffic)
|
||||
func() {
|
||||
defer func() { recover() }()
|
||||
w.worker <- bss
|
||||
}()
|
||||
w.intf.notifySent(size, isLinkTraffic)
|
||||
})
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user