Link: https://lore.kernel.org/r/20260217200002.683975158@linuxfoundation.org Tested-by: Florian Fainelli <florian.fainelli@broadcom.com> Tested-by: Takeshi Ogasawara <takeshi.ogasawara@futuring-girl.com> Tested-by: Peter Schneider <pschneider1968@googlemail.com> Tested-by: Jon Hunter <jonathanh@nvidia.com> Tested-by: Salvatore Bonaccorso <carnil@debian.org> Tested-by: Brett A C Sheffield <bacs@librecast.net> Tested-by: Mark Brown <broonie@kernel.org> Tested-by: Luna Jernberg <droidbittin@gmail.com> Tested-by: Ronald Warsow <rwarsow@gmx.de> Tested-by: Justin M. Forbes <jforbes@fedoraproject.org> Tested-by: Ron Economos <re@w6rz.net> Tested-by: Miguel Ojeda <ojeda@kernel.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
29 lines
862 B
C
29 lines
862 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
#ifndef _NET_RAWV6_H
|
|
#define _NET_RAWV6_H
|
|
|
|
#include <net/protocol.h>
|
|
#include <net/raw.h>
|
|
|
|
extern struct raw_hashinfo raw_v6_hashinfo;
|
|
bool raw_v6_match(struct net *net, const struct sock *sk, unsigned short num,
|
|
const struct in6_addr *loc_addr,
|
|
const struct in6_addr *rmt_addr, int dif, int sdif);
|
|
|
|
int raw_abort(struct sock *sk, int err);
|
|
|
|
void raw6_icmp_error(struct sk_buff *, int nexthdr,
|
|
u8 type, u8 code, int inner_offset, __be32);
|
|
bool raw6_local_deliver(struct sk_buff *, int);
|
|
|
|
int rawv6_rcv(struct sock *sk, struct sk_buff *skb);
|
|
|
|
#if defined(CONFIG_IPV6_MIP6) || defined(CONFIG_IPV6_MIP6_MODULE)
|
|
int rawv6_mh_filter_register(int (*filter)(struct sock *sock,
|
|
struct sk_buff *skb));
|
|
int rawv6_mh_filter_unregister(int (*filter)(struct sock *sock,
|
|
struct sk_buff *skb));
|
|
#endif
|
|
|
|
#endif
|