Commit ceef4838 authored by Juliusz Chroboczek's avatar Juliusz Chroboczek

Add stub for route_interferes.

parent 3baa023e
......@@ -290,6 +290,12 @@ route_expired(struct route *route)
return route->time < now.tv_sec - route->hold_time;
}
int
route_interferes(struct route *route, struct network *net)
{
return 1;
}
int
update_feasible(struct source *src,
unsigned short seqno, unsigned short refmetric)
......
......@@ -58,6 +58,7 @@ void switch_route(struct route *old, struct route *new);
int route_feasible(struct route *route);
int route_old(struct route *route);
int route_expired(struct route *route);
int route_interferes(struct route *route, struct network *net);
int update_feasible(struct source *src,
unsigned short seqno, unsigned short refmetric);
struct route *find_best_route(const unsigned char *prefix, unsigned char plen,
......
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