On May 13, 2007, at 3:07 PM, Ruediger Pluem wrote:



On 05/12/2007 05:10 PM, Ruediger Pluem wrote:

On 05/12/2007 04:12 PM, [EMAIL PROTECTED] wrote:

Author: jim
Date: Sat May 12 07:12:24 2007
New Revision: 537429

URL: http://svn.apache.org/viewvc?view=rev&rev=537429
Log:
Add regex pattern matching to ProxyPass, allowing,
for example:

  ProxyPass ~ \.gif balancer://imagecluster

URL: http://svn.apache.org/viewvc/httpd/httpd/trunk/modules/proxy/ mod_proxy.h?view=diff&rev=537429&r1=537428&r2=537429 ==================================================================== ==========
--- httpd/httpd/trunk/modules/proxy/mod_proxy.h (original)
+++ httpd/httpd/trunk/modules/proxy/mod_proxy.h Sat May 12 07:12:24 2007
@@ -109,6 +109,7 @@
struct proxy_alias {
    const char  *real;
    const char  *fake;
+    ap_regex_t  *regex;
};


Doesn't this require a minor bump?

What about the minor bump? Is it not needed because there is no typedef for struct proxy_alias and thus struct proxy_alias is regarded as private?


Yep... at least I don't think we need one since it's not
a publicly "used" struct.

Reply via email to