]>
Commit | Line | Data |
---|---|---|
1da177e4 LT |
1 | #ifndef _NET_RAWV6_H |
2 | #define _NET_RAWV6_H | |
3 | ||
59fbb3a6 MN |
4 | #include <net/protocol.h> |
5 | ||
69d6da0b | 6 | void raw6_icmp_error(struct sk_buff *, int nexthdr, |
d5fdd6ba | 7 | u8 type, u8 code, int inner_offset, __be32); |
a50feda5 | 8 | bool raw6_local_deliver(struct sk_buff *, int); |
1da177e4 | 9 | |
0ad6ad94 | 10 | int rawv6_rcv(struct sock *sk, struct sk_buff *skb); |
1da177e4 | 11 | |
59fbb3a6 MN |
12 | #if defined(CONFIG_IPV6_MIP6) || defined(CONFIG_IPV6_MIP6_MODULE) |
13 | int rawv6_mh_filter_register(int (*filter)(struct sock *sock, | |
14 | struct sk_buff *skb)); | |
15 | int rawv6_mh_filter_unregister(int (*filter)(struct sock *sock, | |
16 | struct sk_buff *skb)); | |
17 | #endif | |
18 | ||
1da177e4 | 19 | #endif |