Merge git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next
[sfrench/cifs-2.6.git] / include / net / netfilter / ipv4 / nf_conntrack_ipv4.h
1 /* SPDX-License-Identifier: GPL-2.0 */
2 /*
3  * IPv4 support for nf_conntrack.
4  *
5  * 23 Mar 2004: Yasuyuki Kozakai @ USAGI <yasuyuki.kozakai@toshiba.co.jp>
6  *      - move L3 protocol dependent part from include/linux/netfilter_ipv4/
7  *        ip_conntarck.h
8  */
9
10 #ifndef _NF_CONNTRACK_IPV4_H
11 #define _NF_CONNTRACK_IPV4_H
12
13
14 const extern struct nf_conntrack_l3proto nf_conntrack_l3proto_ipv4;
15
16 extern struct nf_conntrack_l4proto nf_conntrack_l4proto_tcp4;
17 extern struct nf_conntrack_l4proto nf_conntrack_l4proto_udp4;
18 extern struct nf_conntrack_l4proto nf_conntrack_l4proto_icmp;
19 #ifdef CONFIG_NF_CT_PROTO_DCCP
20 extern struct nf_conntrack_l4proto nf_conntrack_l4proto_dccp4;
21 #endif
22 #ifdef CONFIG_NF_CT_PROTO_SCTP
23 extern struct nf_conntrack_l4proto nf_conntrack_l4proto_sctp4;
24 #endif
25 #ifdef CONFIG_NF_CT_PROTO_UDPLITE
26 extern struct nf_conntrack_l4proto nf_conntrack_l4proto_udplite4;
27 #endif
28
29 int nf_conntrack_ipv4_compat_init(void);
30 void nf_conntrack_ipv4_compat_fini(void);
31
32 #endif /*_NF_CONNTRACK_IPV4_H*/