Fix SendQueue not updating lastReceiverResponse when recv handshake ack

This commit is contained in:
Ryan Huffman 2017-05-25 13:39:47 -07:00
parent a062c964a9
commit f0c3a0ac28

View file

@ -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();
}