From: Igor Putovny Date: Wed, 3 Jul 2024 13:45:21 +0000 (+0200) Subject: Rename X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=895ed90e47171a31e747c572ff01fbb73b0e3a0f;p=thirdparty%2Fbird.git Rename --- diff --git a/proto/aggregator/aggregator.h b/proto/aggregator/aggregator.h index 61f6ff3d5..edc17b562 100644 --- a/proto/aggregator/aggregator.h +++ b/proto/aggregator/aggregator.h @@ -20,14 +20,14 @@ #define MAX_POTENTIAL_BUCKETS_COUNT 16 -enum aggr_mode { +enum aggregation_mode { NET_AGGR, PREFIX_AGGR, }; struct aggregator_config { struct proto_config c; struct channel_config *src, *dst; - enum aggr_mode aggr_mode; + enum aggregation_mode aggr_mode; uint aggr_on_count; uint aggr_on_da_count; struct aggr_item *aggr_on; @@ -53,7 +53,7 @@ struct aggregator_bucket { struct aggregator_proto { struct proto p; struct channel *src, *dst; - enum aggr_mode aggr_mode; + enum aggregation_mode aggr_mode; /* Buckets by aggregator rule */ HASH(struct aggregator_bucket) buckets;