diff options
author | Jan Engelhardt <jengelh@medozas.de> | 2009-06-12 12:58:19 -0400 |
---|---|---|
committer | Jan Engelhardt <jengelh@medozas.de> | 2009-08-10 07:09:44 -0400 |
commit | 36d4084dc8eb7a9a3655a2041097a46aff3061e9 (patch) | |
tree | 25919c36e4090bbe207e57434273966efab47b3c /include | |
parent | 9e05ec4b1804a1ba51f61fe169aef9b86edcd3f7 (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/Kbuild | 1 | ||||
-rw-r--r-- | include/linux/netfilter_ipv4/ipt_iprange.h | 21 |
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 | |||
23 | header-y += ipt_esp.h | 23 | header-y += ipt_esp.h |
24 | header-y += ipt_hashlimit.h | 24 | header-y += ipt_hashlimit.h |
25 | header-y += ipt_helper.h | 25 | header-y += ipt_helper.h |
26 | header-y += ipt_iprange.h | ||
27 | header-y += ipt_length.h | 26 | header-y += ipt_length.h |
28 | header-y += ipt_limit.h | 27 | header-y += ipt_limit.h |
29 | header-y += ipt_mac.h | 28 | header-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 | |||
7 | struct ipt_iprange { | ||
8 | /* Inclusive: network order. */ | ||
9 | __be32 min_ip, max_ip; | ||
10 | }; | ||
11 | |||
12 | struct 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 */ | ||