Commit 5742abbd authored by Juliusz Chroboczek's avatar Juliusz Chroboczek

Be more conservative about unfeasible requests.

parent 745e06ee
...@@ -442,7 +442,7 @@ send_unfeasible_request(struct neighbour *neigh, int force, ...@@ -442,7 +442,7 @@ send_unfeasible_request(struct neighbour *neigh, int force,
return; return;
} }
if(force || !route || route->metric >= metric + 256) { if(force || !route || route->metric >= metric + 512) {
send_unicast_multihop_request(neigh, prefix, plen, send_unicast_multihop_request(neigh, prefix, plen,
src->metric >= INFINITY ? src->metric >= INFINITY ?
src->seqno : src->seqno :
......
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