From 51b47a12120ffd65b16079585f5101a5e62fec06 Mon Sep 17 00:00:00 2001 From: Stephen Birarda Date: Mon, 3 Aug 2015 13:27:00 -0700 Subject: [PATCH] change stats sampling to 100ms --- tools/udt-test/src/UDTTest.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tools/udt-test/src/UDTTest.cpp b/tools/udt-test/src/UDTTest.cpp index 340c6a16a4..f6ce1cc5ac 100644 --- a/tools/udt-test/src/UDTTest.cpp +++ b/tools/udt-test/src/UDTTest.cpp @@ -123,8 +123,8 @@ UDTTest::UDTTest(int& argc, char** argv) : if (!_target.isNull()) { sendInitialPackets(); - // the sender reports stats every 1 second - static const int STATS_SAMPLE_INTERVAL = 1000; + // the sender reports stats every 100ms + static const int STATS_SAMPLE_INTERVAL = 100; QTimer* statsTimer = new QTimer(this); connect(statsTimer, &QTimer::timeout, this, &UDTTest::sampleStats);