1 #ifndef _NET_RAWV6_H 2 #define _NET_RAWV6_H 3 4 #ifdef __KERNEL__ 5 6 #include <net/protocol.h> 7 8 void raw6_icmp_error(struct sk_buff *, int nexthdr, 9 u8 type, u8 code, int inner_offset, __be32); 10 int raw6_local_deliver(struct sk_buff *, int); 11 12 extern int rawv6_rcv(struct sock *sk, 13 struct sk_buff *skb); 14 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 21 22 #endif 23 24 #endif 25