summaryrefslogtreecommitdiffstats
path: root/include/obj.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/obj.h')
-rw-r--r--include/obj.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/include/obj.h b/include/obj.h
index 26184da..435d8a0 100644
--- a/include/obj.h
+++ b/include/obj.h
@@ -77,6 +77,9 @@ struct nftnl_obj {
} tun_erspan;
} u;
} tunnel;
+ struct nftnl_obj_secmark {
+ char ctx[NFT_SECMARK_CTX_MAXLEN];
+ } secmark;
} data;
};
@@ -100,6 +103,7 @@ extern struct obj_ops obj_ops_ct_helper;
extern struct obj_ops obj_ops_ct_timeout;
extern struct obj_ops obj_ops_limit;
extern struct obj_ops obj_ops_tunnel;
+extern struct obj_ops obj_ops_secmark;
#define nftnl_obj_data(obj) (void *)&obj->data