From 1a1328d4cde4824373c67a23e9e5392f7d7a9d79 Mon Sep 17 00:00:00 2001 From: Igor Putovny Date: Mon, 3 Feb 2025 20:07:00 +0100 Subject: [PATCH] Rename --- proto/aggregator/aggregator.c | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/proto/aggregator/aggregator.c b/proto/aggregator/aggregator.c index 8b924b821..247b9a8a7 100644 --- a/proto/aggregator/aggregator.c +++ b/proto/aggregator/aggregator.c @@ -973,7 +973,7 @@ static void dump_trie(const struct trie_node *); static void print_prefixes(const struct trie_node *, int); static void -trie_receive_update(struct aggregator_proto *p, struct aggregator_route *old, struct aggregator_route *new) +trie_process_update(struct aggregator_proto *p, struct aggregator_route *old, struct aggregator_route *new) { assert(p != NULL); assert(new != NULL); @@ -1043,7 +1043,7 @@ trie_receive_update(struct aggregator_proto *p, struct aggregator_route *old, st } static void -trie_receive_withdraw(struct aggregator_proto *p, struct aggregator_route *old) +trie_process_withdraw(struct aggregator_proto *p, struct aggregator_route *old) { assert(p != NULL); assert(old != NULL); @@ -2174,12 +2174,12 @@ aggregator_rt_notify(struct proto *P, struct channel *src_ch, net *net, rte *new else if (!old && new) log("rt notify: announce"); - trie_receive_update(p, old_route, new_route); + trie_process_update(p, old_route, new_route); } else if (old && !new) { log("rt notify: withdraw"); - trie_receive_withdraw(p, old_route); + trie_process_withdraw(p, old_route); } } } -- 2.47.2