4
0
mirror of https://github.com/cwinfo/yggdrasil-go.git synced 2025-06-16 08:56:07 +00:00

Merge pull request #701 from Arceliar/buffers

More buffer fine-tuning
This commit is contained in:
Arceliar
2020-05-25 16:30:43 -05:00
committed by GitHub

View File

@ -290,8 +290,8 @@ func (p *peer) _handleIdle() {
break
}
}
p.seq++
if len(packets) > 0 {
p.seq++
p.bytesSent += uint64(size)
p.intf.out(packets)
p.max = p.queue.size
@ -303,10 +303,12 @@ func (p *peer) _handleIdle() {
func (p *peer) dropFromQueue(from phony.Actor, seq uint64) {
p.Act(from, func() {
if seq == p.seq {
p.drop = true
p.max = p.queue.size + streamMsgSize
}
p.Act(nil, func() {
if seq == p.seq {
p.drop = true
p.max = p.queue.size + streamMsgSize
}
})
})
}