summaryrefslogtreecommitdiffstats
path: root/src/expr/counter.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/expr/counter.c')
-rw-r--r--src/expr/counter.c16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/expr/counter.c b/src/expr/counter.c
index 1f818c4..4488afc 100644
--- a/src/expr/counter.c
+++ b/src/expr/counter.c
@@ -198,10 +198,26 @@ static int nftnl_expr_counter_snprintf(char *buf, size_t len, uint32_t type,
return -1;
}
+static bool nftnl_expr_counter_cmp(const struct nftnl_expr *e1,
+ const struct nftnl_expr *e2)
+{
+ struct nftnl_expr_counter *c1 = nftnl_expr_data(e1);
+ struct nftnl_expr_counter *c2 = nftnl_expr_data(e2);
+ bool eq = true;
+
+ if (e1->flags & (1 << NFTNL_EXPR_CTR_PACKETS))
+ eq &= (c1->pkts == c2->pkts);
+ if (e1->flags & (1 << NFTNL_EXPR_CTR_BYTES))
+ eq &= (c1->pkts == c2->pkts);
+
+ return eq;
+}
+
struct expr_ops expr_ops_counter = {
.name = "counter",
.alloc_len = sizeof(struct nftnl_expr_counter),
.max_attr = NFTA_COUNTER_MAX,
+ .cmp = nftnl_expr_counter_cmp,
.set = nftnl_expr_counter_set,
.get = nftnl_expr_counter_get,
.parse = nftnl_expr_counter_parse,