On Nov 13, 2010, at 7:01 PM, n...@apache.org wrote: > > Modified: httpd/httpd/trunk/modules/proxy/mod_proxy.h > URL: > http://svn.apache.org/viewvc/httpd/httpd/trunk/modules/proxy/mod_proxy.h?rev=1034916&r1=1034915&r2=1034916&view=diff > ============================================================================== > --- httpd/httpd/trunk/modules/proxy/mod_proxy.h (original) > +++ httpd/httpd/trunk/modules/proxy/mod_proxy.h Sun Nov 14 00:01:43 2010 > @@ -150,6 +150,7 @@ typedef struct { > status_on, > status_full > } proxy_status; /* Status display options */ > + apr_sockaddr_t *source_address; > > int req_set:1; > int viaopt_set:1; > @@ -159,6 +160,7 @@ typedef struct { > int timeout_set:1; > int badopt_set:1; > int proxy_status_set:1; > + int source_address_set:1; > } proxy_server_conf; >
For the record, this is another reason why I don't like "optimizing" struct layouts and using bitfields, since you can no longer simply add additional elements to the end and allow for *some* compatibility... :/