}
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);
}
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);
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 */