summaryrefslogtreecommitdiffstats
path: root/src/expr_ops.c
diff options
context:
space:
mode:
authorPablo Neira Ayuso <pablo@netfilter.org>2013-06-12 14:16:41 +0200
committerPablo Neira Ayuso <pablo@netfilter.org>2013-06-12 14:17:14 +0200
commitd173bc61c4c64952b548cd14a6e0bcfdbc677d9f (patch)
tree188c06755f3f4decea29dc88c83785ed1b47ce3d /src/expr_ops.c
parentfd54772c51144696cd5b8e57b1754a9842d103c1 (diff)
expr: add byteorder
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 0a2547d..3d0d653 100644
--- a/src/expr_ops.c
+++ b/src/expr_ops.c
@@ -3,6 +3,7 @@
#include "expr_ops.h"
extern struct expr_ops expr_ops_bitwise;
+extern struct expr_ops expr_ops_byteorder;
extern struct expr_ops expr_ops_cmp;
extern struct expr_ops expr_ops_counter;
extern struct expr_ops expr_ops_ct;
@@ -18,6 +19,7 @@ extern struct expr_ops expr_ops_target;
struct expr_ops *expr_ops[] = {
&expr_ops_bitwise,
+ &expr_ops_byteorder,
&expr_ops_cmp,
&expr_ops_counter,
&expr_ops_ct,