From cb6c9cf5ac8bc43957f719e86222b32713f38e8b Mon Sep 17 00:00:00 2001 From: Pablo Neira Ayuso Date: Tue, 11 Jun 2013 14:20:15 +0200 Subject: expr: add exthdr This patch adds support for the exthdr expression of nftables that is implemented in linux/net/netfilter/nft_exthdr.c Signed-off-by: Pablo Neira Ayuso --- src/expr_ops.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/expr_ops.c') diff --git a/src/expr_ops.c b/src/expr_ops.c index 1c67fe8..891f901 100644 --- a/src/expr_ops.c +++ b/src/expr_ops.c @@ -5,6 +5,7 @@ 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_exthdr; extern struct expr_ops expr_ops_immediate; extern struct expr_ops expr_ops_log; extern struct expr_ops expr_ops_lookup; @@ -18,6 +19,7 @@ struct expr_ops *expr_ops[] = { &expr_ops_bitwise, &expr_ops_cmp, &expr_ops_counter, + &expr_ops_exthdr, &expr_ops_immediate, &expr_ops_match, &expr_ops_meta, -- cgit v1.2.3