Commit a297779c authored by Juliusz Chroboczek's avatar Juliusz Chroboczek

Wait longer before quitting.

parent 1a030930
...@@ -482,7 +482,7 @@ main(int argc, char **argv) ...@@ -482,7 +482,7 @@ main(int argc, char **argv)
send_hello(&nets[i]); send_hello(&nets[i]);
flushbuf(&nets[i]); flushbuf(&nets[i]);
} }
usleep(5000 + random() % 10000); usleep(50000 + random() % 100000);
for(i = 0; i < numnets; i++) { for(i = 0; i < numnets; i++) {
/* Make sure they got it. */ /* Make sure they got it. */
send_hello(&nets[i]); send_hello(&nets[i]);
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment