summaryrefslogtreecommitdiffstats
path: root/src/expr_ops.c
diff options
context:
space:
mode:
authorPablo Neira Ayuso <pablo@netfilter.org>2012-10-28 18:07:14 +0100
committerPablo Neira Ayuso <pablo@netfilter.org>2012-10-29 23:41:26 +0100
commitb1c5141ca0ea40f0321cc8fad0bb6ef657547c2e (patch)
tree93bae83be5a5ab482a6e35b1cb26c27e89d5f590 /src/expr_ops.c
parent82168f934d5465dda7f0d165d384fc46bd86fab8 (diff)
expr: add bitwise
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 2b21d96..9d121a0 100644
--- a/src/expr_ops.c
+++ b/src/expr_ops.c
@@ -2,6 +2,7 @@
#include "expr_ops.h"
+extern struct expr_ops expr_ops_bitwise;
extern struct expr_ops expr_ops_cmp;
extern struct expr_ops expr_ops_counter;
extern struct expr_ops expr_ops_immediate;
@@ -11,6 +12,7 @@ extern struct expr_ops expr_ops_payload;
extern struct expr_ops expr_ops_target;
struct expr_ops *expr_ops[] = {
+ &expr_ops_bitwise,
&expr_ops_cmp,
&expr_ops_counter,
&expr_ops_immediate,