Files
linux-apfs/include/net/rawv6.h
T

25 lines
585 B
C
Raw Normal View History

2005-04-16 15:20:36 -07:00
#ifndef _NET_RAWV6_H
#define _NET_RAWV6_H
#ifdef __KERNEL__
#include <net/protocol.h>
2007-11-19 22:35:57 -08:00
void raw6_icmp_error(struct sk_buff *, int nexthdr,
u8 type, u8 code, int inner_offset, __be32);
2007-11-19 22:35:57 -08:00
int raw6_local_deliver(struct sk_buff *, int);
2005-04-16 15:20:36 -07:00
extern int rawv6_rcv(struct sock *sk,
struct sk_buff *skb);
#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
2005-04-16 15:20:36 -07:00
#endif
#endif