}
static inline struct aggregator_bucket *
-choose_lowest_id_bucket(const struct aggregator_proto *p, const struct trie_node *node)
+select_lowest_id_bucket(const struct aggregator_proto *p, const struct trie_node *node)
{
assert(p != NULL);
assert(node != NULL);
assert(node->potential_buckets_count > 0);
/* Assign bucket with the lowest ID to the node */
- node->selected_bucket = choose_lowest_id_bucket(p, node);
+ node->selected_bucket = select_lowest_id_bucket(p, node);
assert(node->selected_bucket != NULL);
/*
find_subtree_prefix(node, &prefix, &pxlen, p->addr_type);
/* Select bucket with the lowest ID */
- node->selected_bucket = choose_lowest_id_bucket(p, node);
+ node->selected_bucket = select_lowest_id_bucket(p, node);
assert(node->selected_bucket != NULL);
/*