1
0
mirror of https://github.com/apache/httpd.git synced 2025-07-29 09:01:18 +03:00

mod_cache: Fix a regression in 2.4.25 for the forward proxy case by

computing and using the same entity key according to when the cache
checks, loads and saves the request.  PR 60577.
 


git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@1783842 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Yann Ylavic
2017-02-21 08:20:45 +00:00
parent 6101554faf
commit fb5baf3b81
5 changed files with 86 additions and 50 deletions

View File

@ -327,6 +327,12 @@ char *cache_strqtok(char *str, const char *sep, char **last);
*/
apr_table_t *cache_merge_headers_out(request_rec *r);
/**
* Return whether to use request's path/query from early stage (r->parsed_uri)
* or the current/rewritable ones (r->uri/r->args).
*/
int cache_use_early_url(request_rec *r);
#ifdef __cplusplus
}
#endif