1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-09-28 23:06:14 -04:00

allow control window larger than sending window

This commit is contained in:
v2ray 2016-07-03 23:16:48 +02:00
parent 968fffcffb
commit 9c3ebc0453
No known key found for this signature in database
GPG Key ID: 7251FFA14BB18169

View File

@ -341,8 +341,8 @@ func (this *SendingWorker) OnPacketLoss(lost bool) {
if this.controlWindow < 4 {
this.controlWindow = 4
}
if this.controlWindow > this.windowSize {
this.controlWindow = this.windowSize
if this.controlWindow > 2*this.windowSize {
this.controlWindow = 2 * this.windowSize
}
}