summaryrefslogtreecommitdiffstats
path: root/src/expr_ops.c
diff options
context:
space:
mode:
authorPablo Neira Ayuso <pablo@netfilter.org>2016-08-18 18:51:28 +0200
committerPablo Neira Ayuso <pablo@netfilter.org>2016-08-22 12:20:34 +0200
commitd2a13436aa3029333d4352e7bcddf956735ec0a8 (patch)
tree5be28fe9ed5b887b350055fd36495818b5b8236c /src/expr_ops.c
parent0cbe60118eafe734de7369783cf1c92f6e0934f1 (diff)
expr: add quota expression
This patch adds support for the new quota expression. 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 9b10029..876d7ad 100644
--- a/src/expr_ops.c
+++ b/src/expr_ops.c
@@ -24,6 +24,7 @@ extern struct expr_ops expr_ops_payload;
extern struct expr_ops expr_ops_redir;
extern struct expr_ops expr_ops_reject;
extern struct expr_ops expr_ops_queue;
+extern struct expr_ops expr_ops_quota;
extern struct expr_ops expr_ops_target;
extern struct expr_ops expr_ops_dynset;
extern struct expr_ops expr_ops_hash;
@@ -49,6 +50,7 @@ static struct expr_ops *expr_ops[] = {
&expr_ops_redir,
&expr_ops_reject,
&expr_ops_queue,
+ &expr_ops_quota,
&expr_ops_target,
&expr_ops_dynset,
&expr_ops_hash,