Commit 72b87737 authored by Juliusz Chroboczek's avatar Juliusz Chroboczek

Be slightly more aggressive awhen switching to a new route.

parent 9aee98b4
......@@ -305,7 +305,7 @@ update_route_metric(struct route *route)
if(route->installed) {
struct route *better_route;
better_route = find_best_route(route->dest);
if(better_route->metric < route->metric - 196)
if(better_route->metric <= route->metric - 96)
consider_route(better_route);
else
send_triggered_update(route, oldmetric);
......
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