reset initial to 500, remove debug

This commit is contained in:
Stephen Birarda 2015-07-30 17:22:25 -07:00
parent 91355a5396
commit 805c5a6aff

View file

@ -143,7 +143,7 @@ void UDTTest::parseArguments() {
}
void UDTTest::sendInitialPackets() {
static const int NUM_INITIAL_PACKETS = 10;
static const int NUM_INITIAL_PACKETS = 500;
int numPackets = std::max(NUM_INITIAL_PACKETS, _maxSendPackets);
@ -159,8 +159,6 @@ void UDTTest::sendInitialPackets() {
void UDTTest::sendPacket() {
qDebug() << "Sending packet" << _totalQueuedPackets + 1;
if (_maxSendPackets != -1 && _totalQueuedPackets > _maxSendPackets) {
// don't send more packets, we've hit max
return;