That function couldn't do what it thought it did and no one calls it
anyway (from what I can tell).
git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@98688
13f79535-47bb-0310-9956-
ffa450edef68
return 0;
}
-/* remove other filters from filter stack */
-CACHE_DECLARE(void) ap_cache_reset_output_filters(request_rec *r)
-{
- ap_filter_t *f = r->output_filters;
-
- while (f) {
- if (!strcasecmp(f->frec->name, "CORE") ||
- !strcasecmp(f->frec->name, "CONTENT_LENGTH") ||
- !strcasecmp(f->frec->name, "HTTP_HEADER")) {
- f = f->next;
- continue;
- }
- else {
- ap_remove_output_filter(f);
- f = f->next;
- }
- }
-}
-
CACHE_DECLARE(const char *)ap_cache_get_cachetype(request_rec *r,
cache_server_conf *conf,
const char *url)
int dirlength,
const char *name);
CACHE_DECLARE(int) ap_cache_request_is_conditional(request_rec *r);
-CACHE_DECLARE(void) ap_cache_reset_output_filters(request_rec *r);
CACHE_DECLARE(const char *)ap_cache_get_cachetype(request_rec *r, cache_server_conf *conf, const char *url);
CACHE_DECLARE(int) ap_cache_liststr(apr_pool_t *p, const char *list,
const char *key, char **val);
(MODCACHE)
ap_cache_request_is_conditional,
- ap_cache_reset_output_filters,
ap_cache_get_cachetype,
ap_cache_liststr,
ap_cache_tokstr,