GNU Linux-libre 4.19.264-gnu1
[releases.git] / include / net / netfilter / ipv6 / nf_conntrack_ipv6.h
1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef _NF_CONNTRACK_IPV6_H
3 #define _NF_CONNTRACK_IPV6_H
4
5 extern const struct nf_conntrack_l3proto nf_conntrack_l3proto_ipv6;
6
7 extern const struct nf_conntrack_l4proto nf_conntrack_l4proto_tcp6;
8 extern const struct nf_conntrack_l4proto nf_conntrack_l4proto_udp6;
9 extern const struct nf_conntrack_l4proto nf_conntrack_l4proto_icmpv6;
10 #ifdef CONFIG_NF_CT_PROTO_DCCP
11 extern const struct nf_conntrack_l4proto nf_conntrack_l4proto_dccp6;
12 #endif
13 #ifdef CONFIG_NF_CT_PROTO_SCTP
14 extern const struct nf_conntrack_l4proto nf_conntrack_l4proto_sctp6;
15 #endif
16 #ifdef CONFIG_NF_CT_PROTO_UDPLITE
17 extern const struct nf_conntrack_l4proto nf_conntrack_l4proto_udplite6;
18 #endif
19
20 #include <linux/sysctl.h>
21 extern struct ctl_table nf_ct_ipv6_sysctl_table[];
22
23 #endif /* _NF_CONNTRACK_IPV6_H*/