On Fri, Aug 28, 2009 at 10:52 AM, <[email protected]> wrote: > Author: jim > Date: Fri Aug 28 14:52:38 2009 > New Revision: 808907 > > URL: http://svn.apache.org/viewvc?rev=808907&view=rev > Log: > Ummm... update the code :) >
Helpful log there, Jim ;) > > Modified: > httpd/httpd/branches/2.2.x/CHANGES > httpd/httpd/branches/2.2.x/docs/manual/mod/mod_cache.xml > httpd/httpd/branches/2.2.x/modules/cache/cache_storage.c > httpd/httpd/branches/2.2.x/modules/cache/mod_cache.c > httpd/httpd/branches/2.2.x/modules/cache/mod_cache.h > > Modified: httpd/httpd/branches/2.2.x/modules/cache/mod_cache.h > URL: > http://svn.apache.org/viewvc/httpd/httpd/branches/2.2.x/modules/cache/mod_cache.h?rev=808907&r1=808906&r2=808907&view=diff > > ============================================================================== > --- httpd/httpd/branches/2.2.x/modules/cache/mod_cache.h (original) > +++ httpd/httpd/branches/2.2.x/modules/cache/mod_cache.h Fri Aug 28 > 14:52:38 2009 > @@ -153,6 +153,12 @@ > /** ignore query-string when caching */ > int ignorequerystring; > int ignorequerystring_set; > + /** store the identifiers that should not be used for key calculation > */ > + apr_array_header_t *ignore_session_id; > + /* flag if CacheIgnoreURLSessionIdentifiers has been set */ > + #define CACHE_IGNORE_SESSION_ID_SET 1 > + #define CACHE_IGNORE_SESSION_ID_UNSET 0 > + int ignore_session_id_set; > } cache_server_conf; > I see a past mmn bump when cache_server_conf was modified (r370101). Should it have been bumped for this? (noticed in 2.2.13->2.2.14 changes)
