summaryrefslogtreecommitdiffstats
path: root/mod_bw-httpd24.patch
diff options
context:
space:
mode:
authorRemi Collet <fedora@famillecollet.com>2012-06-13 18:43:31 +0200
committerRemi Collet <fedora@famillecollet.com>2012-06-13 18:43:31 +0200
commit30d96af0232a7ad3d19eed6ff67828ba63a5e41d (patch)
tree00d91770f61661cda47dd4f6ddc47b6e0d4a8f84 /mod_bw-httpd24.patch
reorg repo
Diffstat (limited to 'mod_bw-httpd24.patch')
-rw-r--r--mod_bw-httpd24.patch42
1 files changed, 42 insertions, 0 deletions
diff --git a/mod_bw-httpd24.patch b/mod_bw-httpd24.patch
new file mode 100644
index 0000000..d49d310
--- /dev/null
+++ b/mod_bw-httpd24.patch
@@ -0,0 +1,42 @@
+diff -up mod_bw/mod_bw.c.httpd24 mod_bw/mod_bw.c
+--- mod_bw/mod_bw.c.httpd24 2012-04-10 11:57:06.092958430 +0200
++++ mod_bw/mod_bw.c 2012-04-10 11:59:51.832838191 +0200
+@@ -519,10 +519,8 @@ static long get_bw_rate(request_rec * r,
+ return e[i].rate;
+
+ case T_IP:
+- if (apr_ipsubnet_test(e[i].x.ip, r->connection->remote_addr)) {
+- return e[i].rate;
+- }
+- break;
++ return e[i].rate;
++
+ case T_HOST:
+ if (!gothost) {
+ int remotehost_is_ip;
+@@ -608,10 +606,8 @@ static int get_maxconn(request_rec * r,
+ return e[i].max;
+
+ case T_IP:
+- if (apr_ipsubnet_test(e[i].x.ip, r->connection->remote_addr)) {
+- return e[i].max;
+- }
+- break;
++ return e[i].max;
++
+ case T_HOST:
+ if (!gothost) {
+ int remotehost_is_ip;
+@@ -659,10 +655,8 @@ static int get_sid(request_rec * r, apr_
+ return e[i].sid;
+
+ case T_IP:
+- if (apr_ipsubnet_test(e[i].x.ip, r->connection->remote_addr)) {
+- return e[i].sid;
+- }
+- break;
++ return e[i].sid;
++
+ case T_HOST:
+ if (!gothost) {
+ int remotehost_is_ip;