diff options
author | Sriram Yagnaraman <sriram.yagnaraman@est.tech> | 2023-02-24 10:52:51 +0100 |
---|---|---|
committer | Florian Westphal <fw@strlen.de> | 2023-03-08 14:21:18 +0100 |
commit | 4386b921857793440ebd4db3d6b70639149c7074 (patch) | |
tree | 379a6dd9a0af9dc986a06c973426697876f8cfc6 /include/uapi/linux/netfilter | |
parent | 7d8c48917a9576b5fc8871aa4946149b0e4a4927 (diff) | |
download | linux-stable-4386b921857793440ebd4db3d6b70639149c7074.tar.gz linux-stable-4386b921857793440ebd4db3d6b70639149c7074.tar.bz2 linux-stable-4386b921857793440ebd4db3d6b70639149c7074.zip |
netfilter: bridge: introduce broute meta statement
nftables equivalent for ebtables -t broute.
Implement broute meta statement to set br_netfilter_broute flag
in skb to force a packet to be routed instead of being bridged.
Signed-off-by: Sriram Yagnaraman <sriram.yagnaraman@est.tech>
Signed-off-by: Florian Westphal <fw@strlen.de>
Diffstat (limited to 'include/uapi/linux/netfilter')
-rw-r--r-- | include/uapi/linux/netfilter/nf_tables.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/uapi/linux/netfilter/nf_tables.h b/include/uapi/linux/netfilter/nf_tables.h index ff677f3a6cad..9c6f02c26054 100644 --- a/include/uapi/linux/netfilter/nf_tables.h +++ b/include/uapi/linux/netfilter/nf_tables.h @@ -931,6 +931,7 @@ enum nft_exthdr_attributes { * @NFT_META_TIME_HOUR: hour of day (in seconds) * @NFT_META_SDIF: slave device interface index * @NFT_META_SDIFNAME: slave device interface name + * @NFT_META_BRI_BROUTE: packet br_netfilter_broute bit */ enum nft_meta_keys { NFT_META_LEN, @@ -969,6 +970,7 @@ enum nft_meta_keys { NFT_META_TIME_HOUR, NFT_META_SDIF, NFT_META_SDIFNAME, + NFT_META_BRI_BROUTE, __NFT_META_IIFTYPE, }; |