remove congestion window halving on reno dupe loss

This commit is contained in:
Stephen Birarda 2016-09-27 18:09:56 -07:00
parent ec51f01c59
commit 54b28e646a

View file

@ -106,9 +106,6 @@ bool TCPVegasCC::onACK(SequenceNumber ack, p_high_resolution_clock::time_point r
_numACKSinceFastRetransmit = 0;
_duplicateACKCount = 0;
// drop the congestion window size to 2 segments
_congestionWindowSize /= 2;
// return true so the caller knows we needed a fast re-transmit
return true;
}