SOURCES: mod_rpaf_degtine.patch (NEW) revision 1.1 date: 2007/09/2...

glen glen at pld-linux.org
Thu Sep 27 12:09:41 CEST 2007


Author: glen                         Date: Thu Sep 27 10:09:41 2007 GMT
Module: SOURCES                       Tag: HEAD
---- Log message:
revision 1.1
date: 2007/09/26 14:56:57;  author: alpha;  state: Exp;
- "degtine" stands for "vodka" in .lt
- see http://www.mail-archive.com/debian-bugs-dist@lists.debian.org/msg210747.html

---- Files affected:
SOURCES:
   mod_rpaf_degtine.patch (NONE -> 1.1)  (NEW)

---- Diffs:

================================================================
Index: SOURCES/mod_rpaf_degtine.patch
diff -u /dev/null SOURCES/mod_rpaf_degtine.patch:1.1
--- /dev/null	Thu Sep 27 12:09:41 2007
+++ SOURCES/mod_rpaf_degtine.patch	Thu Sep 27 12:09:36 2007
@@ -0,0 +1,59 @@
+diff -ur mod_rpaf-0.5/mod_rpaf-2.0.c libapache-mod-rpaf-0.5/mod_rpaf-2.0.c
+--- mod_rpaf-0.5/mod_rpaf-2.0.c	2004-03-17 15:47:30.000000000 +0000
++++ libapache-mod-rpaf-0.5/mod_rpaf-2.0.c	2006-06-16 18:04:05.000000000 +0100
+@@ -130,6 +130,16 @@
+     return 0;
+ }
+ 
++static char* last_not_in_array(apr_array_header_t *forwarded_for,
++			       apr_array_header_t *proxy_ips) {
++    int i;
++    for (i = (forwarded_for->nelts)-1; i > 0; i--) {
++	if (!is_in_array(((char **)forwarded_for->elts)[i], proxy_ips))
++	    break;
++    }
++    return ((char **)forwarded_for->elts)[i];
++}
++
+ static int change_remote_ip(request_rec *r) {
+     const char *fwdvalue;
+     char *val;
+@@ -147,7 +157,7 @@
+                 if (*fwdvalue != '\0')
+                     ++fwdvalue;
+             }
+-            r->connection->remote_ip = apr_pstrdup(r->connection->pool, ((char **)arr->elts)[((arr->nelts)-1)]);
++            r->connection->remote_ip = apr_pstrdup(r->connection->pool, last_not_in_array(arr, cfg->proxy_ips));
+             r->connection->remote_addr->sa.sin.sin_addr.s_addr = inet_addr(r->connection->remote_ip);
+             if (cfg->sethostname) {
+                 const char *hostvalue;
+diff -ur mod_rpaf-0.5/mod_rpaf.c libapache-mod-rpaf-0.5/mod_rpaf.c
+--- mod_rpaf-0.5/mod_rpaf.c	2004-03-17 15:47:30.000000000 +0000
++++ libapache-mod-rpaf-0.5/mod_rpaf.c	2006-06-16 18:04:38.000000000 +0100
+@@ -130,6 +130,16 @@
+     return 0;
+ }
+ 
++static char* last_not_in_array(array_header *forwarded_for,
++			       array_header *proxy_ips) {
++    int i;
++    for (i = (forwarded_for->nelts)-1; i > 0; i--) {
++	if (!is_in_array(((char **)forwarded_for->elts)[i], proxy_ips))
++	    break;
++    }
++    return ((char **)forwarded_for->elts)[i];
++}
++
+ static int change_remote_ip(request_rec *r) {
+     const char *fwdvalue;
+     char *val;
+@@ -147,7 +157,7 @@
+                 if (*fwdvalue != '\0')
+                     ++fwdvalue;
+             }
+-            r->connection->remote_ip = ap_pstrdup(r->connection->pool, ((char **)arr->elts)[((arr->nelts)-1)]);
++            r->connection->remote_ip = ap_pstrdup(r->connection->pool, last_not_in_array(arr, cfg->proxy_ips));
+             r->connection->remote_addr.sin_addr.s_addr = inet_addr(r->connection->remote_ip);
+             if (cfg->sethostname) {
+                 const char *hostvalue;
+
================================================================


More information about the pld-cvs-commit mailing list