Commit b711f624 authored by Juliusz Chroboczek's avatar Juliusz Chroboczek

Send seqno-specific requests when a route's metric increases.

parent 3f16e32a
...@@ -431,6 +431,6 @@ send_triggered_update(struct route *route, int oldmetric) ...@@ -431,6 +431,6 @@ send_triggered_update(struct route *route, int oldmetric)
if(route->metric - oldmetric >= 384) { if(route->metric - oldmetric >= 384) {
/* This route's metric has increased a lot -- let's hope we find /* This route's metric has increased a lot -- let's hope we find
something better */ something better */
send_request(NULL, route->dest, 0); send_request(NULL, route->dest, 1);
} }
} }
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