From ab04eb8cf0db6ac92f958a04c4872d0685039423 Mon Sep 17 00:00:00 2001 From: Joe Sislow Date: Thu, 13 Nov 2014 16:06:30 -0600 Subject: [PATCH] Change default packet size to 8400 - Still have the ability to change the packet size, but the default is set to fast to make sure it won't hang on certain routes --- src/udpipe.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/udpipe.cpp b/src/udpipe.cpp index 8ed9d68..84c9a6b 100644 --- a/src/udpipe.cpp +++ b/src/udpipe.cpp @@ -50,7 +50,7 @@ void initialize_thread_args(thread_args *args){ args->blast_rate = 1000; args->udt_buff = BUFF_SIZE; args->udp_buff = BUFF_SIZE; - args->mss = 1500; // 8400; + args->mss = 8400; // 1500 args->use_crypto = 0; args->verbose = 0; args->n_crypto_threads = 1;