summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorPablo Neira Ayuso <pablo@netfilter.org>2018-10-10 15:08:25 +0200
committerPablo Neira Ayuso <pablo@netfilter.org>2018-10-10 15:08:54 +0200
commitc1e932eedef7c8b8683c15a419bace8794d1b5e4 (patch)
treea13f6d842e58bb5aca4f2abe4f5ef2b1f008edfe /src
parentd6ed28a3b3d96965dcf67656e8321f8835c0aa05 (diff)
src: remove netlink_flush_table()
Just a simple wrapper function, replace it by direct call to mnl_nft_rule_del(). Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
Diffstat (limited to 'src')
-rw-r--r--src/netlink.c10
-rw-r--r--src/rule.c2
2 files changed, 1 insertions, 11 deletions
diff --git a/src/netlink.c b/src/netlink.c
index 3cf42351..60635054 100644
--- a/src/netlink.c
+++ b/src/netlink.c
@@ -444,11 +444,6 @@ static int netlink_list_rules(struct netlink_ctx *ctx, const struct handle *h)
return 0;
}
-static int netlink_flush_rules(struct netlink_ctx *ctx, const struct cmd *cmd)
-{
- return mnl_nft_rule_del(ctx, cmd);
-}
-
void netlink_dump_chain(const struct nftnl_chain *nlc, struct netlink_ctx *ctx)
{
FILE *fp = ctx->octx->output_fp;
@@ -593,11 +588,6 @@ int netlink_list_table(struct netlink_ctx *ctx, const struct handle *h)
return netlink_list_rules(ctx, h);
}
-int netlink_flush_table(struct netlink_ctx *ctx, const struct cmd *cmd)
-{
- return netlink_flush_rules(ctx, cmd);
-}
-
enum nft_data_types dtype_map_to_kernel(const struct datatype *dtype)
{
switch (dtype->type) {
diff --git a/src/rule.c b/src/rule.c
index 5ef84f79..34ce7693 100644
--- a/src/rule.c
+++ b/src/rule.c
@@ -2259,7 +2259,7 @@ static int do_command_flush(struct netlink_ctx *ctx, struct cmd *cmd)
{
switch (cmd->obj) {
case CMD_OBJ_TABLE:
- return netlink_flush_table(ctx, cmd);
+ return mnl_nft_rule_del(ctx, cmd);
case CMD_OBJ_CHAIN:
return netlink_flush_chain(ctx, cmd);
case CMD_OBJ_SET: