summaryrefslogtreecommitdiffstats
path: root/include/statement.h
diff options
context:
space:
mode:
authorPablo Neira Ayuso <pablo@netfilter.org>2017-11-09 03:42:55 +0100
committerPablo Neira Ayuso <pablo@netfilter.org>2018-06-06 19:18:43 +0200
commit30d45266bf38b209df33e4df1a116c60531ae3e5 (patch)
treeaf94699ae6d6a58edf84aabfff31bc82ff44e642 /include/statement.h
parent57e4a095edc4dab19e14fc8d1bca3febde1ca86c (diff)
expr: extend fwd statement to support address and family
Allow to forward packets through to explicit destination and interface. nft add rule netdev x y fwd ip to 192.168.2.200 device eth0 Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
Diffstat (limited to 'include/statement.h')
-rw-r--r--include/statement.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/include/statement.h b/include/statement.h
index d4bcaf3a..5a907aa4 100644
--- a/include/statement.h
+++ b/include/statement.h
@@ -164,7 +164,9 @@ struct stmt *dup_stmt_alloc(const struct location *loc);
uint32_t dup_stmt_type(const char *type);
struct fwd_stmt {
- struct expr *to;
+ uint8_t family;
+ struct expr *addr;
+ struct expr *dev;
};
struct stmt *fwd_stmt_alloc(const struct location *loc);