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

have the peer delay setting a max buffer size, in case things have unblocked in the mean time

This commit is contained in:
Arceliar 2020-05-24 17:24:50 -05:00
parent 28d6e3e605
commit 9574308545

View File

@ -303,11 +303,13 @@ func (p *peer) _handleIdle() {
func (p *peer) dropFromQueue(from phony.Actor, seq uint64) {
p.Act(from, func() {
p.Act(nil, func() {
if seq == p.seq {
p.drop = true
p.max = p.queue.size + streamMsgSize
}
})
})
}
// This wraps the packet in the inner (ephemeral) and outer (permanent) crypto layers.