diff options
author | Maria Matejka <mq@ucw.cz> | 2022-06-27 19:04:22 +0200 |
---|---|---|
committer | Maria Matejka <mq@ucw.cz> | 2022-06-27 19:04:24 +0200 |
commit | beb5f78ada79ac90f31f2c4923302c74d9ab38bf (patch) | |
tree | b6f37568d57428d7bc9df103c84922b1076e1f5e /nest/route.h | |
parent | b867c798c3e42c875311a79fe53a36d4a5bfd126 (diff) |
Preexport callback now takes the channel instead of protocol as argument
Passing protocol to preexport was in fact a historical relic from the
old times when channels weren't a thing. Refactoring that to match
current extensibility needs.
Diffstat (limited to 'nest/route.h')
-rw-r--r-- | nest/route.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/nest/route.h b/nest/route.h index 395139a3..1dacd92f 100644 --- a/nest/route.h +++ b/nest/route.h @@ -357,7 +357,7 @@ rte *rte_find(net *net, struct rte_src *src); rte *rte_get_temp(struct rta *); void rte_update2(struct channel *c, const net_addr *n, rte *new, struct rte_src *src); /* rte_update() moved to protocol.h to avoid dependency conflicts */ -int rt_examine(rtable *t, net_addr *a, struct proto *p, const struct filter *filter); +int rt_examine(rtable *t, net_addr *a, struct channel *c, const struct filter *filter); rte *rt_export_merged(struct channel *c, net *net, rte **rt_free, linpool *pool, int silent); void rt_refresh_begin(rtable *t, struct channel *c); void rt_refresh_end(rtable *t, struct channel *c); |