summaryrefslogtreecommitdiffstats
path: root/src/expr_ops.c
diff options
context:
space:
mode:
authorFernando Fernandez Mancera <ffmancera@riseup.net>2018-07-25 01:34:28 +0200
committerPablo Neira Ayuso <pablo@netfilter.org>2018-07-30 14:10:47 +0200
commit7f7850fd393647fda95ff6441a0cc80071ce54d6 (patch)
treeb0996c6afe56805904a8fc391cc53154e467d3ca /src/expr_ops.c
parentc5a98195523416e4fa21fc649b4c61ef653eec32 (diff)
expr: add osf support
Signed-off-by: Fernando Fernandez Mancera <ffmancera@riseup.net> Signed-off-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 72a4679..23a9bcc 100644
--- a/src/expr_ops.c
+++ b/src/expr_ops.c
@@ -37,6 +37,7 @@ extern struct expr_ops expr_ops_hash;
extern struct expr_ops expr_ops_fib;
extern struct expr_ops expr_ops_flow;
extern struct expr_ops expr_ops_socket;
+extern struct expr_ops expr_ops_osf;
static struct expr_ops expr_ops_notrack = {
.name = "notrack",
@@ -77,6 +78,7 @@ static struct expr_ops *expr_ops[] = {
&expr_ops_objref,
&expr_ops_flow,
&expr_ops_socket,
+ &expr_ops_osf,
NULL,
};