Commit f6d18713 authored by Juliusz Chroboczek's avatar Juliusz Chroboczek

Use a larger value for seqno_interval.

Now that requests work well, there's no need to increase seqno_interval
as fast, and this makes it more likely that routes will be feasible.
parent afad28c9
......@@ -267,9 +267,9 @@ main(int argc, char **argv)
70000);
if(seqno_interval <= 0)
seqno_interval = MAX(1000,
MIN(wireless_hello_interval - 100,
wired_hello_interval / 4 - 100));
/* This should be slightly less than the self_update_interval */
seqno_interval = MAX(1000, update_interval * 4 / 10);
if(do_daemonise) {
if(logfile == NULL)
......
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