linux/include/net/netfilter/ipv6/nf_conntrack_ipv6.h
<<
>>
Prefs
   1#ifndef _NF_CONNTRACK_IPV6_H
   2#define _NF_CONNTRACK_IPV6_H
   3
   4extern struct nf_conntrack_l3proto nf_conntrack_l3proto_ipv6;
   5
   6extern struct nf_conntrack_l4proto nf_conntrack_l4proto_tcp6;
   7extern struct nf_conntrack_l4proto nf_conntrack_l4proto_udp6;
   8extern struct nf_conntrack_l4proto nf_conntrack_l4proto_icmpv6;
   9
  10extern int nf_ct_frag6_init(void);
  11extern void nf_ct_frag6_cleanup(void);
  12extern struct sk_buff *nf_ct_frag6_gather(struct sk_buff *skb);
  13extern void nf_ct_frag6_output(unsigned int hooknum, struct sk_buff *skb,
  14                               struct net_device *in,
  15                               struct net_device *out,
  16                               int (*okfn)(struct sk_buff *));
  17
  18struct inet_frags_ctl;
  19
  20#include <linux/sysctl.h>
  21extern struct ctl_table nf_ct_ipv6_sysctl_table[];
  22
  23#endif /* _NF_CONNTRACK_IPV6_H*/
  24