PATCHES ACCEPTED TO BACKPORT FROM TRUNK:
[ start all new proposals below, under PATCHES PROPOSED. ]
- * proxy_ajp: ap_proxy_determine_connection modifies the url if we are
- retrying the result we should retry using the orginal url.
- http://svn.apache.org/viewvc?rev=706318&view=rev
- +1: jfclere, rpluem, jim
PATCHES PROPOSED TO BACKPORT FROM TRUNK:
[ New proposals should be added at the end of the list ]
retry = 0;
while (retry < 2) {
+ char *locurl = url;
/* Step One: Determine Who To Connect To */
status = ap_proxy_determine_connection(p, r, conf, worker, backend,
- uri, &url, proxyname, proxyport,
+ uri, &locurl, proxyname, proxyport,
server_portstr,
sizeof(server_portstr));
}
}
/* Step Three: Process the Request */
- status = ap_proxy_ajp_request(p, r, backend, origin, dconf, uri, url,
+ status = ap_proxy_ajp_request(p, r, backend, origin, dconf, uri, locurl,
server_portstr);
break;
}