Commit a0d0215d authored by Juliusz Chroboczek's avatar Juliusz Chroboczek

Reduce the amount of hysteresis.

parent 7a97fbf7
......@@ -516,7 +516,7 @@ consider_route(struct route *route)
if(installed->src != route->src)
return;
if(installed->metric >= route->metric + 96)
if(installed->metric >= route->metric + 64)
goto install;
return;
......
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