summaryrefslogtreecommitdiffstats
path: root/src/expr_ops.c
diff options
context:
space:
mode:
authorFlorian Westphal <fw@strlen.de>2018-09-05 11:16:41 +0200
committerFlorian Westphal <fw@strlen.de>2018-09-21 11:59:50 +0200
commitf4621a6f870644af934869d52bf24137c76910db (patch)
tree632baa852bd93dd2f96e7dc8dbe6af9ac2a49364 /src/expr_ops.c
parent43146d504c34003fe94389b0717c9f79c6de792d (diff)
expr: add xfrm support
Joint work with Máté Eckl. Signed-off-by: Florian Westphal <fw@strlen.de> Acked-by: Pablo Neira Ayuso <pablo@netfilter.org>
Diffstat (limited to 'src/expr_ops.c')
-rw-r--r--src/expr_ops.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/expr_ops.c b/src/expr_ops.c
index d418c3e..051140f 100644
--- a/src/expr_ops.c
+++ b/src/expr_ops.c
@@ -39,6 +39,7 @@ extern struct expr_ops expr_ops_flow;
extern struct expr_ops expr_ops_socket;
extern struct expr_ops expr_ops_tunnel;
extern struct expr_ops expr_ops_osf;
+extern struct expr_ops expr_ops_xfrm;
static struct expr_ops expr_ops_notrack = {
.name = "notrack",
@@ -81,6 +82,7 @@ static struct expr_ops *expr_ops[] = {
&expr_ops_socket,
&expr_ops_tunnel,
&expr_ops_osf,
+ &expr_ops_xfrm,
NULL,
};