]> git.ipfire.org Git - thirdparty/bird.git/commitdiff
Rename
authorIgor Putovny <igor.putovny@nic.cz>
Fri, 14 Feb 2025 16:12:25 +0000 (17:12 +0100)
committerIgor Putovny <igor.putovny@nic.cz>
Fri, 14 Feb 2025 16:12:25 +0000 (17:12 +0100)
proto/aggregator/aggregator.c

index 1572b6737ab8daa08a59a19d1482353f4f7b4ff1..473401bb4a44f7c28d9290262d2836f19ea21fd8 100644 (file)
@@ -1054,7 +1054,7 @@ merge_buckets_above(struct trie_node *node)
 }
 
 static void
-trie_process_update(struct aggregator_proto *p, struct aggregator_route *old UNUSED, struct aggregator_route *new)
+aggregator_process_update(struct aggregator_proto *p, struct aggregator_route *old UNUSED, struct aggregator_route *new)
 {
   assert(p != NULL);
   assert(new != NULL);
@@ -1112,7 +1112,7 @@ trie_process_update(struct aggregator_proto *p, struct aggregator_route *old UNU
 }
 
 static void
-trie_process_withdraw(struct aggregator_proto *p, struct aggregator_route *old)
+aggregator_process_withdraw(struct aggregator_proto *p, struct aggregator_route *old)
 {
   assert(p != NULL);
   assert(old != NULL);
@@ -1835,12 +1835,12 @@ aggregator_rt_notify(struct proto *P, struct channel *src_ch, net *net, rte *new
         else if (!old && new)
           log("rt notify: announce");
 
-        trie_process_update(p, old_route, new_route);
+        aggregator_process_update(p, old_route, new_route);
       }
       else if (old && !new)
       {
         log("rt notify: withdraw");
-        trie_process_withdraw(p, old_route);
+        aggregator_process_withdraw(p, old_route);
       }
 
       /* Process all route withdrawals which were caused by the update */