Merge pull request #10552 from huffman/fix/multiple-nic-lockup

Fix SendQueue not setting lastReceiverResponse when recv handshake ack
This commit is contained in:
Ryan Huffman 2017-05-30 13:05:01 -07:00 committed by GitHub
commit 4a52f4090d

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