Skip to content

Commit

Permalink
Change default packet size to 8400
Browse files Browse the repository at this point in the history
- 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
  • Loading branch information
Joe Sislow committed Nov 13, 2014
1 parent 36666ee commit ab04eb8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/udpipe.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit ab04eb8

Please sign in to comment.