diff options
author | Stephen Suryaputra <ssuryaextr@gmail.com> | 2019-06-20 18:19:59 +0200 |
---|---|---|
committer | Pablo Neira Ayuso <pablo@netfilter.org> | 2019-06-21 18:35:51 +0200 |
commit | dbb5281a1f84b2f93032d4864c211ce8a20811a7 (patch) | |
tree | a204da3a545973d53b5f9ae4672cc34934d86775 /net/ipv4/ip_options.c | |
parent | netfilter: synproxy: fix manual bump of the reference counter (diff) | |
download | linux-dbb5281a1f84b2f93032d4864c211ce8a20811a7.tar.xz linux-dbb5281a1f84b2f93032d4864c211ce8a20811a7.zip |
netfilter: nf_tables: add support for matching IPv4 options
This is the kernel change for the overall changes with this description:
Add capability to have rules matching IPv4 options. This is developed
mainly to support dropping of IP packets with loose and/or strict source
route route options.
Signed-off-by: Stephen Suryaputra <ssuryaextr@gmail.com>
Signed-off-by: Pablo Neira Ayuso <pablo@netfilter.org>
Diffstat (limited to 'net/ipv4/ip_options.c')
-rw-r--r-- | net/ipv4/ip_options.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/net/ipv4/ip_options.c b/net/ipv4/ip_options.c index 3db31bb9df50..ddaa01ec2bce 100644 --- a/net/ipv4/ip_options.c +++ b/net/ipv4/ip_options.c @@ -473,6 +473,7 @@ error: *info = htonl((pp_ptr-iph)<<24); return -EINVAL; } +EXPORT_SYMBOL(__ip_options_compile); int ip_options_compile(struct net *net, struct ip_options *opt, struct sk_buff *skb) |