summaryrefslogtreecommitdiff
path: root/nest/rt-table.c
diff options
context:
space:
mode:
authorOndrej Zajicek (work) <santiago@crfreenet.org>2021-03-29 04:43:04 +0200
committerOndrej Zajicek <santiago@crfreenet.org>2023-04-16 20:06:00 +0200
commit4d56b70dc5facdf4b839b76bf80c93856bcbb121 (patch)
tree8cb9a6f7cc5b3ea463e018a82186f95f0860f6f0 /nest/rt-table.c
parent568fd666136fcf7a37eb445d18b478b6464536c4 (diff)
BMP: Remove duplicate functions for update encoding
Use existing BGP functions also for BMP update encoding.
Diffstat (limited to 'nest/rt-table.c')
-rw-r--r--nest/rt-table.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/nest/rt-table.c b/nest/rt-table.c
index 553e8223..2b065032 100644
--- a/nest/rt-table.c
+++ b/nest/rt-table.c
@@ -3097,7 +3097,7 @@ rte_update_in(struct channel *c, const net_addr *n, rte *new, struct rte_src *sr
old->flags &= ~(REF_STALE | REF_DISCARD | REF_MODIFY);
if (c->proto->rte_update_in_notify)
- c->proto->rte_update_in_notify(c->proto, c, net, new, old, src);
+ c->proto->rte_update_in_notify(c, n, old, src);
return 1;
}
@@ -3122,12 +3122,12 @@ rte_update_in(struct channel *c, const net_addr *n, rte *new, struct rte_src *sr
if (!old)
goto drop_withdraw;
- if (c->proto->rte_update_in_notify)
- c->proto->rte_update_in_notify(c->proto, c, net, new, old, src);
-
if (!net->routes)
fib_delete(&tab->fib, net);
+ if (c->proto->rte_update_in_notify)
+ c->proto->rte_update_in_notify(c, n, NULL, src);
+
return 1;
}
@@ -3158,7 +3158,7 @@ rte_update_in(struct channel *c, const net_addr *n, rte *new, struct rte_src *sr
tab->rt_count++;
if (c->proto->rte_update_in_notify)
- c->proto->rte_update_in_notify(c->proto, c, net, new, old, src);
+ c->proto->rte_update_in_notify(c, n, e, src);
return 1;