summaryrefslogtreecommitdiffstats
path: root/target/linux/generic-2.4/patches/622-netfilter_ipset_porthash.patch
diff options
context:
space:
mode:
authoragb <agb@3c298f89-4303-0410-b956-a3cf2f4a3e73>2009-05-15 10:35:56 +0000
committeragb <agb@3c298f89-4303-0410-b956-a3cf2f4a3e73>2009-05-15 10:35:56 +0000
commit949cf51c59d8dbe300e1bcf10b07d21a87d2f002 (patch)
tree598ac804d79442e546491905ef64a6c470aaa0d5 /target/linux/generic-2.4/patches/622-netfilter_ipset_porthash.patch
parentf564ea28eb86a6efd03c98756c8c0ddd0a5278e1 (diff)
[kernel] generic-2.4: renumber netfilter patches
both the netfilter_random and tc_esfq patches were numbered 621 in the patch series, bumped index of tc_esfq and all following 62x patches by one git-svn-id: svn://svn.openwrt.org/openwrt/trunk@15859 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/generic-2.4/patches/622-netfilter_ipset_porthash.patch')
-rw-r--r--target/linux/generic-2.4/patches/622-netfilter_ipset_porthash.patch39
1 files changed, 0 insertions, 39 deletions
diff --git a/target/linux/generic-2.4/patches/622-netfilter_ipset_porthash.patch b/target/linux/generic-2.4/patches/622-netfilter_ipset_porthash.patch
deleted file mode 100644
index 0fc1ec621..000000000
--- a/target/linux/generic-2.4/patches/622-netfilter_ipset_porthash.patch
+++ /dev/null
@@ -1,39 +0,0 @@
-Index: linux-2.4.35.4/include/linux/netfilter_ipv4/ip_set_ipporthash.h
-===================================================================
---- /dev/null
-+++ linux-2.4.35.4/include/linux/netfilter_ipv4/ip_set_ipporthash.h
-@@ -0,0 +1,34 @@
-+#ifndef __IP_SET_IPPORTHASH_H
-+#define __IP_SET_IPPORTHASH_H
-+
-+#include <linux/netfilter_ipv4/ip_set.h>
-+
-+#define SETTYPE_NAME "ipporthash"
-+#define MAX_RANGE 0x0000FFFF
-+#define INVALID_PORT (MAX_RANGE + 1)
-+
-+struct ip_set_ipporthash {
-+ ip_set_ip_t *members; /* the ipporthash proper */
-+ uint32_t elements; /* number of elements */
-+ uint32_t hashsize; /* hash size */
-+ uint16_t probes; /* max number of probes */
-+ uint16_t resize; /* resize factor in percent */
-+ ip_set_ip_t first_ip; /* host byte order, included in range */
-+ ip_set_ip_t last_ip; /* host byte order, included in range */
-+ void *initval[0]; /* initvals for jhash_1word */
-+};
-+
-+struct ip_set_req_ipporthash_create {
-+ uint32_t hashsize;
-+ uint16_t probes;
-+ uint16_t resize;
-+ ip_set_ip_t from;
-+ ip_set_ip_t to;
-+};
-+
-+struct ip_set_req_ipporthash {
-+ ip_set_ip_t ip;
-+ ip_set_ip_t port;
-+};
-+
-+#endif /* __IP_SET_IPPORTHASH_H */