Commit d561ce00 authored by Juliusz Chroboczek's avatar Juliusz Chroboczek

Reduce delay when sending initial update and final retractions.

parent 7bae45be
...@@ -510,7 +510,7 @@ main(int argc, char **argv) ...@@ -510,7 +510,7 @@ main(int argc, char **argv)
send_self_update(&nets[i], 0); send_self_update(&nets[i], 0);
send_request(&nets[i], NULL, 0, 0, 0, 0); send_request(&nets[i], NULL, 0, 0, 0, 0);
flushbuf(&nets[i]); flushbuf(&nets[i]);
usleep(50000 + random() % 100000); usleep(5000 + random() % 10000);
} }
debugf("Entering main loop.\n"); debugf("Entering main loop.\n");
...@@ -695,7 +695,7 @@ main(int argc, char **argv) ...@@ -695,7 +695,7 @@ main(int argc, char **argv)
send_hello_noupdate(&nets[i], 15 * numnets); send_hello_noupdate(&nets[i], 15 * numnets);
flushupdates(); flushupdates();
flushbuf(&nets[i]); flushbuf(&nets[i]);
usleep(50000 + random() % 100000); usleep(5000 + random() % 10000);
} }
for(i = 0; i < numnets; i++) { for(i = 0; i < numnets; i++) {
if(!nets[i].up) if(!nets[i].up)
...@@ -705,7 +705,7 @@ main(int argc, char **argv) ...@@ -705,7 +705,7 @@ main(int argc, char **argv)
send_hello_noupdate(&nets[i], 1); send_hello_noupdate(&nets[i], 1);
flushupdates(); flushupdates();
flushbuf(&nets[i]); flushbuf(&nets[i]);
usleep(50000 + random() % 100000); usleep(5000 + random() % 10000);
network_up(&nets[i], 0); network_up(&nets[i], 0);
} }
kernel_setup_socket(0); kernel_setup_socket(0);
......
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