Blame view

include/net/rawv6.h 558 Bytes
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
1
2
  #ifndef _NET_RAWV6_H
  #define _NET_RAWV6_H
59fbb3a61   Masahide NAKAMURA   [IPV6] MIP6: Load...
3
  #include <net/protocol.h>
69d6da0b0   Pavel Emelyanov   [IPv6] RAW: Compa...
4
  void raw6_icmp_error(struct sk_buff *, int nexthdr,
d5fdd6bab   Brian Haley   ipv6: Use correct...
5
  		u8 type, u8 code, int inner_offset, __be32);
69d6da0b0   Pavel Emelyanov   [IPv6] RAW: Compa...
6
  int raw6_local_deliver(struct sk_buff *, int);
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
7
8
9
  
  extern int			rawv6_rcv(struct sock *sk,
  					  struct sk_buff *skb);
59fbb3a61   Masahide NAKAMURA   [IPV6] MIP6: Load...
10
11
12
13
14
15
  #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
1da177e4c   Linus Torvalds   Linux-2.6.12-rc2
16
  #endif