From 895ed90e47171a31e747c572ff01fbb73b0e3a0f Mon Sep 17 00:00:00 2001 From: Igor Putovny Date: Wed, 3 Jul 2024 15:45:21 +0200 Subject: [PATCH] Rename --- proto/aggregator/aggregator.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) 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; -- 2.47.2