Commit 330f067d authored by tstellanova's avatar tstellanova

fix timeout checker

parent ceffc7a6
......@@ -238,7 +238,7 @@ void UASParameterCommsMgr::retransmissionGuardTick()
//Workaround for an apparent Qt bug that causes retransmission guard timer to fire prematurely (350ms)
quint64 elapsed = (curTime - lastTimerReset);
if (elapsed < transmissionTimeout) {
if (elapsed < retransmissionTimeout) {
qDebug() << "retransmissionGuardTick elapsed:" << (curTime - lastTimerReset);
//reset the guard timer: it fired prematurely
setRetransmissionGuardEnabled(true);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment