Committer: Michael Beasley <mike@snafu.setup>
[mikesnafu-overlay.git] / include / net / rawv6.h
blob8a22599f26ba9ce4fe7b9e649e23321fc359263d
1 #ifndef _NET_RAWV6_H
2 #define _NET_RAWV6_H
4 #ifdef __KERNEL__
6 #include <net/protocol.h>
8 void raw6_icmp_error(struct sk_buff *, int nexthdr,
9 int type, int code, int inner_offset, __be32);
10 int raw6_local_deliver(struct sk_buff *, int);
12 extern int rawv6_rcv(struct sock *sk,
13 struct sk_buff *skb);
15 #if defined(CONFIG_IPV6_MIP6) || defined(CONFIG_IPV6_MIP6_MODULE)
16 int rawv6_mh_filter_register(int (*filter)(struct sock *sock,
17 struct sk_buff *skb));
18 int rawv6_mh_filter_unregister(int (*filter)(struct sock *sock,
19 struct sk_buff *skb));
20 #endif
22 #endif
24 #endif