set the max window size, correct a typo

This commit is contained in:
Stephen Birarda 2015-08-03 19:12:37 -07:00
parent 03de1eae5b
commit a10746a448
2 changed files with 3 additions and 2 deletions

View file

@ -41,8 +41,9 @@ Connection::Connection(Socket* parentSocket, HifiSockAddr destination, unique_pt
_rtt = _synInterval * 10;
_rttVariance = _rtt / 2;
// set the initial RTT on congestion control object
// set the initial RTT and flow window size on congestion control object
_congestionControl->setRTT(_rtt);
_congestionControl->setMaxCongestionWindowSize(_flowWindowSize);
}
Connection::~Connection() {

View file

@ -48,7 +48,7 @@ const QStringList CLIENT_STATS_TABLE_HEADERS {
};
const QStringList SERVER_STATS_TABLE_HEADERS {
"Recieve Rate (P/s)", "Total Bytes", "Util Bytes", "Ratio (%)",
"Receive Rate (P/s)", "Total Bytes", "Util Bytes", "Ratio (%)",
"Sent ACK", "Sent LACK", "Sent NAK", "Sent TNAK",
"Recieved ACK2", "Duplicate Packets"
};