• Home
  • History
  • Annotate
  • Line#
  • Navigate
  • Raw
  • Download
  • only in /asuswrt-rt-n18u-9.0.0.4.380.2695/release/src-rt-6.x.4708/linux/linux-2.6/include/net/
1#ifndef _NET_RAWV6_H
2#define _NET_RAWV6_H
3
4#ifdef __KERNEL__
5
6#include <net/protocol.h>
7
8void raw6_icmp_error(struct sk_buff *, int nexthdr,
9		u8 type, u8 code, int inner_offset, __be32);
10int raw6_local_deliver(struct sk_buff *, int);
11
12extern int			rawv6_rcv(struct sock *sk,
13					  struct sk_buff *skb);
14
15#if defined(CONFIG_IPV6_MIP6) || defined(CONFIG_IPV6_MIP6_MODULE)
16int rawv6_mh_filter_register(int (*filter)(struct sock *sock,
17					   struct sk_buff *skb));
18int rawv6_mh_filter_unregister(int (*filter)(struct sock *sock,
19					     struct sk_buff *skb));
20#endif
21
22#endif
23
24#endif
25