1
2
3
4
5
6
7
8
9
10 #ifndef _NF_CONNTRACK_IPV4_H
11 #define _NF_CONNTRACK_IPV4_H
12
13 extern const struct nf_conntrack_l4proto nf_conntrack_l4proto_tcp;
14 extern const struct nf_conntrack_l4proto nf_conntrack_l4proto_udp;
15 extern const struct nf_conntrack_l4proto nf_conntrack_l4proto_icmp;
16 #ifdef CONFIG_NF_CT_PROTO_DCCP
17 extern const struct nf_conntrack_l4proto nf_conntrack_l4proto_dccp;
18 #endif
19 #ifdef CONFIG_NF_CT_PROTO_SCTP
20 extern const struct nf_conntrack_l4proto nf_conntrack_l4proto_sctp;
21 #endif
22 #ifdef CONFIG_NF_CT_PROTO_UDPLITE
23 extern const struct nf_conntrack_l4proto nf_conntrack_l4proto_udplite;
24 #endif
25 #ifdef CONFIG_NF_CT_PROTO_GRE
26 extern const struct nf_conntrack_l4proto nf_conntrack_l4proto_gre;
27 #endif
28
29 #endif