mirror of
https://github.com/overte-org/overte.git
synced 2025-08-06 16:36:54 +02:00
Send light acks based on CC member
This commit is contained in:
parent
96dc033de1
commit
ce1fc4baa9
2 changed files with 3 additions and 0 deletions
|
@ -68,6 +68,7 @@ private:
|
||||||
CongestionControl& operator=(const CongestionControl& other) = delete;
|
CongestionControl& operator=(const CongestionControl& other) = delete;
|
||||||
|
|
||||||
int _ackInterval { 0 }; // How many packets to send one ACK, in packets
|
int _ackInterval { 0 }; // How many packets to send one ACK, in packets
|
||||||
|
int _lightACKInterval { 64 }; // How many packets to send one light ACK, in packets
|
||||||
|
|
||||||
int _synInterval { DEFAULT_SYN_INTERVAL };
|
int _synInterval { DEFAULT_SYN_INTERVAL };
|
||||||
|
|
||||||
|
|
|
@ -282,6 +282,8 @@ void Connection::processReceivedSequenceNumber(SequenceNumber seq) {
|
||||||
// check if we need to send an ACK, according to CC params
|
// check if we need to send an ACK, according to CC params
|
||||||
if (_congestionControl->_ackInterval > 0 && _packetsSinceACK >= _congestionControl->_ackInterval) {
|
if (_congestionControl->_ackInterval > 0 && _packetsSinceACK >= _congestionControl->_ackInterval) {
|
||||||
sendACK(false);
|
sendACK(false);
|
||||||
|
} else if (_congestionControl->_lightACKInterval > 0 && _packetsSinceACK >= _congestionControl->_lightACKInterval) {
|
||||||
|
sendLightACK();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue