aboutsummaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorJan Engelhardt <jengelh@medozas.de>2009-06-12 12:58:19 -0400
committerJan Engelhardt <jengelh@medozas.de>2009-08-10 07:09:44 -0400
commit36d4084dc8eb7a9a3655a2041097a46aff3061e9 (patch)
tree25919c36e4090bbe207e57434273966efab47b3c /include
parent9e05ec4b1804a1ba51f61fe169aef9b86edcd3f7 (diff)
netfilter: xtables: remove xt_iprange v0
Superseded by xt_iprange v1 (v2.6.24-2928-g1a50c5a1). Signed-off-by: Jan Engelhardt <jengelh@medozas.de>
Diffstat (limited to 'include')
-rw-r--r--include/linux/netfilter_ipv4/Kbuild1
-rw-r--r--include/linux/netfilter_ipv4/ipt_iprange.h21
2 files changed, 0 insertions, 22 deletions
diff --git a/include/linux/netfilter_ipv4/Kbuild b/include/linux/netfilter_ipv4/Kbuild
index 86d81a285f9c..5e361ef44e87 100644
--- a/include/linux/netfilter_ipv4/Kbuild
+++ b/include/linux/netfilter_ipv4/Kbuild
@@ -23,7 +23,6 @@ header-y += ipt_ecn.h
23header-y += ipt_esp.h 23header-y += ipt_esp.h
24header-y += ipt_hashlimit.h 24header-y += ipt_hashlimit.h
25header-y += ipt_helper.h 25header-y += ipt_helper.h
26header-y += ipt_iprange.h
27header-y += ipt_length.h 26header-y += ipt_length.h
28header-y += ipt_limit.h 27header-y += ipt_limit.h
29header-y += ipt_mac.h 28header-y += ipt_mac.h
diff --git a/include/linux/netfilter_ipv4/ipt_iprange.h b/include/linux/netfilter_ipv4/ipt_iprange.h
deleted file mode 100644
index 5f1aebde4d2f..000000000000
--- a/include/linux/netfilter_ipv4/ipt_iprange.h
+++ /dev/null
@@ -1,21 +0,0 @@
1#ifndef _IPT_IPRANGE_H
2#define _IPT_IPRANGE_H
3
4#include <linux/types.h>
5#include <linux/netfilter/xt_iprange.h>
6
7struct ipt_iprange {
8 /* Inclusive: network order. */
9 __be32 min_ip, max_ip;
10};
11
12struct ipt_iprange_info
13{
14 struct ipt_iprange src;
15 struct ipt_iprange dst;
16
17 /* Flags from above */
18 u_int8_t flags;
19};
20
21#endif /* _IPT_IPRANGE_H */