Searched defs:vary (Results 1 - 7 of 7) sorted by relevance
/httpd/modules/cache/ |
H A D | cache_storage.c | 250 char *vary = NULL; local 278 vary = cache_strqtok( 282 while (vary) { 289 h1 = cache_table_getm(r->pool, r->headers_in, vary); 290 h2 = cache_table_getm(r->pool, h->req_hdrs, vary); 304 vary = cache_strqtok(NULL, CACHE_SEPARATOR, &last); 307 /* no vary match, try next provider */
|
H A D | mod_cache_disk.h | 46 disk_cache_file_t vary; /* vary file structure */ member in struct:disk_cache_object 48 const char *name; /* Requested URI without vary bits - suitable for mortals. */
|
H A D | mod_cache_socache.c | 82 const char *name; /* Requested URI without vary bits - suitable for mortals. */ 524 "Cannot parse vary entry for key: %s", key); 815 const char *vary; local 817 vary = apr_table_get(sobj->headers_out, "Vary"); 819 if (vary) { 831 tokens_to_array(r->pool, vary, varray); 919 /* Parse the vary header and dump those fields from the headers_in. */
|
/httpd/modules/dav/main/ |
H A D | util.c | 1824 const char *vary = apr_table_get(out_req->headers_out, "Vary"); local 1828 if (vary == NULL) 1829 vary = DAV_LABEL_HDR; 1831 vary = apr_pstrcat(out_req->pool, vary, "," DAV_LABEL_HDR, 1834 apr_table_setn(out_req->headers_out, "Vary", vary);
|
/httpd/modules/test/ |
H A D | mod_policy.c | 1061 const char *vary) 1065 if (vary) { 1072 *match_ptr = vary; 1266 "URL describing the vary header policy."), 1060 set_vary(cmd_parms *cmd, void *dconf, const char *action, const char *vary) argument
|
/httpd/support/ |
H A D | htcacheclean.c | 280 const char *vary; local 290 /* vary directory found? */ 291 vary = strstr(name, CACHE_VDIR_SUFFIX); 292 if (vary && !vary[sizeof(CACHE_VDIR_SUFFIX) - 1]) { 293 nextpath = apr_pstrcat(p, path, "/", apr_pstrndup(p, name, vary
|
/httpd/modules/mappers/ |
H A D | mod_rewrite.c | 394 const char *vary; member in struct:__anon242 4142 ctx->vary = ctx->vary 4143 ? apr_pstrcat(r->pool, ctx->vary, ", ", ctx->vary_this, 4316 ctx->vary = NULL; 4324 if (ctx->vary) { 4325 apr_table_merge(r->headers_out, "Vary", ctx->vary);
|
Completed in 46 milliseconds