mirror of
https://github.com/lubosz/overte.git
synced 2025-04-19 13:44:05 +02:00
Fix SendQueue not updating lastReceiverResponse when recv handshake ack
This commit is contained in:
parent
a062c964a9
commit
f0c3a0ac28
1 changed files with 3 additions and 0 deletions
|
@ -241,6 +241,9 @@ void SendQueue::handshakeACK(SequenceNumber initialSequenceNumber) {
|
|||
std::lock_guard<std::mutex> locker { _handshakeMutex };
|
||||
_hasReceivedHandshakeACK = true;
|
||||
}
|
||||
|
||||
_lastReceiverResponse = QDateTime::currentMSecsSinceEpoch();
|
||||
|
||||
// Notify on the handshake ACK condition
|
||||
_handshakeACKCondition.notify_one();
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue