summaryrefslogtreecommitdiffstats
path: root/src/xt.c
diff options
context:
space:
mode:
authorPablo Neira Ayuso <pablo@netfilter.org>2016-12-20 13:40:36 +0100
committerPablo Neira Ayuso <pablo@netfilter.org>2016-12-20 20:24:27 +0100
commitfdd609c89b6b94ec30b0d66196f7f961dc10befe (patch)
treeadde5c386fb986250a736a834986b57034c92777 /src/xt.c
parent7c568680e2d904b5332e398a2a329ecdb94f897e (diff)
xt: use NFTNL_* definitions
Do not use obsolete definitions in libnftnl. Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
Diffstat (limited to 'src/xt.c')
-rw-r--r--src/xt.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/xt.c b/src/xt.c
index c4b76c73..e24b0af0 100644
--- a/src/xt.c
+++ b/src/xt.c
@@ -201,19 +201,19 @@ void netlink_parse_match(struct netlink_parse_ctx *ctx,
xtables_set_nfproto(ctx->table->handle.family);
- name = nftnl_expr_get_str(nle, NFT_EXPR_MT_NAME);
+ name = nftnl_expr_get_str(nle, NFTNL_EXPR_MT_NAME);
mt = xtables_find_match(name, XTF_TRY_LOAD, NULL);
if (!mt)
BUG("XT match %s not found\n", name);
- mtinfo = nftnl_expr_get(nle, NFT_EXPR_MT_INFO, &mt_len);
+ mtinfo = nftnl_expr_get(nle, NFTNL_EXPR_MT_INFO, &mt_len);
m = xzalloc(sizeof(struct xt_entry_match) + mt_len);
memcpy(&m->data, mtinfo, mt_len);
m->u.match_size = mt_len + XT_ALIGN(sizeof(struct xt_entry_match));
- m->u.user.revision = nftnl_expr_get_u32(nle, NFT_EXPR_MT_REV);
+ m->u.user.revision = nftnl_expr_get_u32(nle, NFTNL_EXPR_MT_REV);
stmt = xt_stmt_alloc(loc);
stmt->xt.name = strdup(name);
@@ -238,18 +238,18 @@ void netlink_parse_target(struct netlink_parse_ctx *ctx,
xtables_set_nfproto(ctx->table->handle.family);
- name = nftnl_expr_get_str(nle, NFT_EXPR_TG_NAME);
+ name = nftnl_expr_get_str(nle, NFTNL_EXPR_TG_NAME);
tg = xtables_find_target(name, XTF_TRY_LOAD);
if (!tg)
BUG("XT target %s not found\n", name);
- tginfo = nftnl_expr_get(nle, NFT_EXPR_TG_INFO, &tg_len);
+ tginfo = nftnl_expr_get(nle, NFTNL_EXPR_TG_INFO, &tg_len);
size = XT_ALIGN(sizeof(struct xt_entry_target)) + tg_len;
t = xzalloc(size);
memcpy(&t->data, tginfo, tg_len);
t->u.target_size = size;
- t->u.user.revision = nftnl_expr_get_u32(nle, NFT_EXPR_TG_REV);
+ t->u.user.revision = nftnl_expr_get_u32(nle, NFTNL_EXPR_TG_REV);
strcpy(t->u.user.name, tg->name);
stmt = xt_stmt_alloc(loc);