summaryrefslogtreecommitdiffstats
path: root/iptables/nft-ipv6.c
diff options
context:
space:
mode:
authorPhil Sutter <phil@nwl.cc>2018-07-19 18:32:03 +0200
committerFlorian Westphal <fw@strlen.de>2018-07-19 23:10:06 +0200
commit444d581bcc561a73d172522a83b91772f9130ba3 (patch)
treea11a0a87cecad3a622c4f714941924719fdeb88c /iptables/nft-ipv6.c
parent34e1e234a937242ebebbe225438b4567ca0c5bd2 (diff)
xtables: get rid of nft_ipv{4,6}_save_counters()
Just replace them by the shared save_counters() function after adjusting it's signature to meet callback requirements. Signed-off-by: Phil Sutter <phil@nwl.cc> Signed-off-by: Florian Westphal <fw@strlen.de>
Diffstat (limited to 'iptables/nft-ipv6.c')
-rw-r--r--iptables/nft-ipv6.c9
1 files changed, 1 insertions, 8 deletions
diff --git a/iptables/nft-ipv6.c b/iptables/nft-ipv6.c
index 29b50878..9e9049f3 100644
--- a/iptables/nft-ipv6.c
+++ b/iptables/nft-ipv6.c
@@ -367,13 +367,6 @@ static void nft_ipv6_post_parse(int command, struct iptables_command_state *cs,
" source or destination IP addresses");
}
-static void nft_ipv6_save_counters(const void *data)
-{
- const struct iptables_command_state *cs = data;
-
- save_counters(cs->counters.pcnt, cs->counters.bcnt);
-}
-
static void xlate_ipv6_addr(const char *selector, const struct in6_addr *addr,
const struct in6_addr *mask,
int invert, struct xt_xlate *xl)
@@ -447,7 +440,7 @@ struct nft_family_ops nft_family_ops_ipv6 = {
.print_header = print_header,
.print_firewall = nft_ipv6_print_firewall,
.save_firewall = nft_ipv6_save_firewall,
- .save_counters = nft_ipv6_save_counters,
+ .save_counters = save_counters,
.proto_parse = nft_ipv6_proto_parse,
.post_parse = nft_ipv6_post_parse,
.parse_target = nft_ipv46_parse_target,