remove numRTT from TCPVegasCC

This commit is contained in:
Stephen Birarda 2016-09-26 15:42:46 -07:00
parent 995f383edb
commit c0219d9ddf
2 changed files with 0 additions and 2 deletions

View file

@ -110,7 +110,6 @@ void TCPVegasCC::performCongestionAvoidance(udt::SequenceNumber ack) {
static int VEGAS_GAMMA_SEGMENTS = 1;
qDebug() << "============";
qDebug() << "PCA" << _numRTT;
qDebug() << "CWS:" << _congestionWindowSize << "SS:" << _slowStart;
// Use the Vegas algorithm to see if we should

View file

@ -54,7 +54,6 @@ private:
int _currentMinRTT { 0x7FFFFFFF }; // Current RTT, in microseconds
int _baseRTT { 0x7FFFFFFF }; // Lowest RTT during connection, in microseconds
int _numRTT { 0 }; // Number of RTT collected during last RTT
int _ewmaRTT { -1 }; // Exponential weighted moving average RTT
int _rttVariance { 0 }; // Variance in collected RTT values