From a075bb6b1cdc8ae45c6575ac83093f9abdede60d Mon Sep 17 00:00:00 2001 From: Stephen Birarda Date: Tue, 27 Sep 2016 17:35:59 -0700 Subject: [PATCH] slow down new UDT debug for asset-server tests --- libraries/networking/src/udt/TCPVegasCC.cpp | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/libraries/networking/src/udt/TCPVegasCC.cpp b/libraries/networking/src/udt/TCPVegasCC.cpp index 227bcadc33..2a67fe5bed 100644 --- a/libraries/networking/src/udt/TCPVegasCC.cpp +++ b/libraries/networking/src/udt/TCPVegasCC.cpp @@ -72,8 +72,6 @@ bool TCPVegasCC::onACK(SequenceNumber ack, p_high_resolution_clock::time_point r // remove this sent packet time from the hash _sentPacketTimes.erase(it); - } else { - qDebug() << "called with a sequence number that has not been sent"; } @@ -141,7 +139,7 @@ void TCPVegasCC::performCongestionAvoidance(udt::SequenceNumber ack) { static int count = 0; bool wantDebug = false; - if (++count > 200) { + if (++count > 500) { wantDebug = true; count = 0; }