summaryrefslogtreecommitdiff
path: root/include/net/netfilter
diff options
context:
space:
mode:
authorKOVACS Krisztian <hidden@sch.bme.hu>2008-10-08 09:35:12 (GMT)
committerPatrick McHardy <kaber@trash.net>2008-10-08 09:35:12 (GMT)
commit73e4022f78acdbe420e8c24a7afbd90f4c8f5077 (patch)
treefb4d9bd53fa9057251254c7e606f041d00148790 /include/net/netfilter
parent4de6f16b9ec2422fa7ef9c22f7b1c8d5a55499b4 (diff)
downloadlinux-fsl-qoriq-73e4022f78acdbe420e8c24a7afbd90f4c8f5077.tar.xz
netfilter: split netfilter IPv4 defragmentation into a separate module
Netfilter connection tracking requires all IPv4 packets to be defragmented. Both the socket match and the TPROXY target depend on this functionality, so this patch separates the Netfilter IPv4 defrag hooks into a separate module. Signed-off-by: KOVACS Krisztian <hidden@sch.bme.hu> Signed-off-by: Patrick McHardy <kaber@trash.net>
Diffstat (limited to 'include/net/netfilter')
-rw-r--r--include/net/netfilter/ipv4/nf_defrag_ipv4.h6
1 files changed, 6 insertions, 0 deletions
diff --git a/include/net/netfilter/ipv4/nf_defrag_ipv4.h b/include/net/netfilter/ipv4/nf_defrag_ipv4.h
new file mode 100644
index 0000000..6b00ea3
--- /dev/null
+++ b/include/net/netfilter/ipv4/nf_defrag_ipv4.h
@@ -0,0 +1,6 @@
+#ifndef _NF_DEFRAG_IPV4_H
+#define _NF_DEFRAG_IPV4_H
+
+extern void nf_defrag_ipv4_enable(void);
+
+#endif /* _NF_DEFRAG_IPV4_H */