diff options
author | Patrick McHardy <kaber@trash.net> | 2006-01-05 12:21:34 -0800 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2006-01-05 12:21:34 -0800 |
commit | 22dea562bb56dbc3430c8f23f60ccd38527b1f5a (patch) | |
tree | 4bcb8a3c6136e09a4864fa0d9948c4ff2892b2ed /include | |
parent | b777e0ce7437a0e788e2aeb42aca9af2cce1f2e1 (diff) | |
download | linux-3.10-22dea562bb56dbc3430c8f23f60ccd38527b1f5a.tar.gz linux-3.10-22dea562bb56dbc3430c8f23f60ccd38527b1f5a.tar.bz2 linux-3.10-22dea562bb56dbc3430c8f23f60ccd38527b1f5a.zip |
[NETFILTER]: Export ip6_masked_addrcmp, don't pass IPv6 addresses on stack
Signed-off-by: Patrick McHardy <kaber@trash.net>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'include')
-rw-r--r-- | include/linux/netfilter_ipv6/ip6_tables.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/linux/netfilter_ipv6/ip6_tables.h b/include/linux/netfilter_ipv6/ip6_tables.h index a291cb76ef1..c163ba31aab 100644 --- a/include/linux/netfilter_ipv6/ip6_tables.h +++ b/include/linux/netfilter_ipv6/ip6_tables.h @@ -476,6 +476,10 @@ extern int ip6t_ext_hdr(u8 nexthdr); extern int ipv6_find_hdr(const struct sk_buff *skb, unsigned int *offset, int target, unsigned short *fragoff); +extern int ip6_masked_addrcmp(const struct in6_addr *addr1, + const struct in6_addr *mask, + const struct in6_addr *addr2); + #define IP6T_ALIGN(s) (((s) + (__alignof__(struct ip6t_entry)-1)) & ~(__alignof__(struct ip6t_entry)-1)) #endif /*__KERNEL__*/ |