aboutsummaryrefslogtreecommitdiffstats
path: root/include/linux/netfilter_ipv4/ipt_iprange.h
diff options
context:
space:
mode:
authorThe Android Open Source Project <initial-contribution@android.com>2009-03-03 18:28:29 -0800
committerThe Android Open Source Project <initial-contribution@android.com>2009-03-03 18:28:29 -0800
commit11c93ca183254ad93f561b6b32419f7ee46266fd (patch)
tree4b825dc642cb6eb9a060e54bf8d69288fbee4904 /include/linux/netfilter_ipv4/ipt_iprange.h
parent345d26d4f856734cb88897a97d014879fc04e006 (diff)
downloadandroid_external_iptables-11c93ca183254ad93f561b6b32419f7ee46266fd.tar.gz
android_external_iptables-11c93ca183254ad93f561b6b32419f7ee46266fd.tar.bz2
android_external_iptables-11c93ca183254ad93f561b6b32419f7ee46266fd.zip
auto import from //depot/cupcake/@135843
Diffstat (limited to 'include/linux/netfilter_ipv4/ipt_iprange.h')
-rw-r--r--include/linux/netfilter_ipv4/ipt_iprange.h23
1 files changed, 0 insertions, 23 deletions
diff --git a/include/linux/netfilter_ipv4/ipt_iprange.h b/include/linux/netfilter_ipv4/ipt_iprange.h
deleted file mode 100644
index 3ecb3bd..0000000
--- a/include/linux/netfilter_ipv4/ipt_iprange.h
+++ /dev/null
@@ -1,23 +0,0 @@
-#ifndef _IPT_IPRANGE_H
-#define _IPT_IPRANGE_H
-
-#define IPRANGE_SRC 0x01 /* Match source IP address */
-#define IPRANGE_DST 0x02 /* Match destination IP address */
-#define IPRANGE_SRC_INV 0x10 /* Negate the condition */
-#define IPRANGE_DST_INV 0x20 /* Negate the condition */
-
-struct ipt_iprange {
- /* Inclusive: network order. */
- u_int32_t min_ip, max_ip;
-};
-
-struct ipt_iprange_info
-{
- struct ipt_iprange src;
- struct ipt_iprange dst;
-
- /* Flags from above */
- u_int8_t flags;
-};
-
-#endif /* _IPT_IPRANGE_H */