diff options
author | Nicolas Thill <nico@openwrt.org> | 2011-10-24 21:35:02 +0000 |
---|---|---|
committer | Nicolas Thill <nico@openwrt.org> | 2011-10-24 21:35:02 +0000 |
commit | 8f7d6c66e1226233b49681a5fe4b614bb51d86c3 (patch) | |
tree | b43729f641faad3df1795fca37331d84368fd25f /package/ipset/patches | |
parent | 98c5037127164e4906fdf94f24079f8a10bbc6dd (diff) | |
download | upstream-8f7d6c66e1226233b49681a5fe4b614bb51d86c3.tar.gz upstream-8f7d6c66e1226233b49681a5fe4b614bb51d86c3.tar.bz2 upstream-8f7d6c66e1226233b49681a5fe4b614bb51d86c3.zip |
package/ipset: move out to packages/net/
SVN-Revision: 28561
Diffstat (limited to 'package/ipset/patches')
-rw-r--r-- | package/ipset/patches/001-2.6.35.patch | 62 |
1 files changed, 0 insertions, 62 deletions
diff --git a/package/ipset/patches/001-2.6.35.patch b/package/ipset/patches/001-2.6.35.patch deleted file mode 100644 index 7e98e06fa2..0000000000 --- a/package/ipset/patches/001-2.6.35.patch +++ /dev/null @@ -1,62 +0,0 @@ ---- a/kernel/ipt_set.c -+++ b/kernel/ipt_set.c -@@ -83,10 +83,14 @@ match(const struct sk_buff *skb, - int offset, - unsigned int protoff, - bool *hotdrop) --#else /* LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,28) */ -+#elif LINUX_VERSION_CODE < KERNEL_VERSION(2,6,35) - static bool - match(const struct sk_buff *skb, - const struct xt_match_param *par) -+#else /* LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,35) */ -+static bool -+match(const struct sk_buff *skb, -+ struct xt_action_param *par) - #endif - { - #if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,28) -@@ -136,9 +140,12 @@ checkentry(const char *tablename, - const struct xt_match *match, - void *matchinfo, - unsigned int hook_mask) --#else /* LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,28) */ -+#elif LINUX_VERSION_CODE < KERNEL_VERSION(2,6,35) - static bool - checkentry(const struct xt_mtchk_param *par) -+#else /* LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,35) */ -+static int -+checkentry(const struct xt_mtchk_param *par) - #endif - { - #if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,28) ---- a/kernel/ipt_SET.c -+++ b/kernel/ipt_SET.c -@@ -64,9 +64,12 @@ target(struct sk_buff *skb, - unsigned int hooknum, - const struct xt_target *target, - const void *targinfo) --#else /* LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,28) */ -+#elif LINUX_VERSION_CODE < KERNEL_VERSION(2,6,35) - target(struct sk_buff *skb, - const struct xt_target_param *par) -+#else /* LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,35) */ -+target(struct sk_buff *skb, -+ const struct xt_action_param *par) - #endif - { - #if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,28) -@@ -127,9 +130,12 @@ checkentry(const char *tablename, - const struct xt_target *target, - void *targinfo, - unsigned int hook_mask) --#else /* LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,28) */ -+#elif LINUX_VERSION_CODE < KERNEL_VERSION(2,6,35) - static bool - checkentry(const struct xt_tgchk_param *par) -+#else /* LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,35) */ -+static int -+checkentry(const struct xt_tgchk_param *par) - #endif - { - #if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,28) |