mirror of
https://github.com/overte-org/overte.git
synced 2025-08-08 19:36:45 +02:00
only process cp tail if in the right spot
This commit is contained in:
parent
6c9021c288
commit
56d6d95df9
1 changed files with 12 additions and 10 deletions
|
@ -746,6 +746,7 @@ void Connection::processTimeoutNAK(std::unique_ptr<ControlPacket> controlPacket)
|
|||
}
|
||||
|
||||
void Connection::processProbeTail(std::unique_ptr<ControlPacket> controlPacket) {
|
||||
if (((uint32_t) _lastReceivedSequenceNumber & 0xF) == 0) {
|
||||
// this is the second packet in a probe set so we can estimate bandwidth
|
||||
// the sender sent this to us in lieu of sending new data (because they didn't have any)
|
||||
|
||||
|
@ -759,6 +760,7 @@ void Connection::processProbeTail(std::unique_ptr<ControlPacket> controlPacket)
|
|||
// the next data packet received
|
||||
_receivedControlProbeTail = true;
|
||||
}
|
||||
}
|
||||
|
||||
void Connection::resetReceiveState() {
|
||||
|
||||
|
|
Loading…
Reference in a new issue