This commit was manufactured by cvs2svn to create branch 'vserver'.
[linux-2.6.git] / include / net / netfilter / ipv6 / nf_conntrack_ipv6.h
1 #ifndef _NF_CONNTRACK_IPV6_H
2 #define _NF_CONNTRACK_IPV6_H
3
4 extern struct nf_conntrack_l3proto nf_conntrack_l3proto_ipv6;
5
6 extern struct nf_conntrack_l4proto nf_conntrack_l4proto_tcp6;
7 extern struct nf_conntrack_l4proto nf_conntrack_l4proto_udp6;
8 extern struct nf_conntrack_l4proto nf_conntrack_l4proto_icmpv6;
9
10 extern int nf_ct_ipv6_skip_exthdr(struct sk_buff *skb, int start,
11                                   u8 *nexthdrp, int len);
12
13 extern int nf_ct_frag6_init(void);
14 extern void nf_ct_frag6_cleanup(void);
15 extern struct sk_buff *nf_ct_frag6_gather(struct sk_buff *skb);
16 extern void nf_ct_frag6_output(unsigned int hooknum, struct sk_buff *skb,
17                                struct net_device *in,
18                                struct net_device *out,
19                                int (*okfn)(struct sk_buff *));
20
21 extern unsigned int nf_ct_frag6_timeout;
22 extern unsigned int nf_ct_frag6_low_thresh;
23 extern unsigned int nf_ct_frag6_high_thresh;
24
25 #endif /* _NF_CONNTRACK_IPV6_H*/