mirror of
https://github.com/lubosz/overte.git
synced 2025-04-09 00:02:39 +02:00
set the max window size, correct a typo
This commit is contained in:
parent
03de1eae5b
commit
a10746a448
2 changed files with 3 additions and 2 deletions
|
@ -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() {
|
||||
|
|
|
@ -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"
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue