mirror of
https://github.com/overte-org/overte.git
synced 2025-08-04 14:29:35 +02:00
fix an additional reference to preAIWindowSize
This commit is contained in:
parent
d05e3e1dd6
commit
b74a967c95
1 changed files with 1 additions and 1 deletions
|
@ -249,7 +249,7 @@ void TCPVegasCC::performRenoCongestionAvoidance(SequenceNumber ack) {
|
|||
if (_ackAICount >= preAIWindowSize) {
|
||||
int delta = _ackAICount / preAIWindowSize;
|
||||
|
||||
_ackAICount -= delta * _congestionWindowSize;
|
||||
_ackAICount -= delta * preAIWindowSize;
|
||||
_congestionWindowSize += delta;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue