Searched refs:resp_hdrs (Results 1 - 6 of 6) sorted by relevance
/httpd/modules/cache/ |
H A D | cache_storage.c | 280 cache_table_getm(r->pool, h->resp_hdrs, "Vary")), 325 if (ap_condition_if_match(r, h->resp_hdrs) == AP_CONDITION_NOMATCH 326 || ap_condition_if_unmodified_since(r, h->resp_hdrs) 328 || ap_condition_if_none_match(r, h->resp_hdrs) 330 || ap_condition_if_modified_since(r, h->resp_hdrs) 332 || ap_condition_if_range(r, h->resp_hdrs) == AP_CONDITION_NOMATCH) { 368 etag = apr_table_get(h->resp_hdrs, "ETag"); 369 lastmod = apr_table_get(h->resp_hdrs, "Last-Modified"); 401 cache_accept_headers(h, r, h->resp_hdrs, r->headers_out, 0);
|
H A D | cache_util.c | 596 if ((agestr = apr_table_get(h->resp_hdrs, "Age"))) { 677 warn_head = apr_table_get(h->resp_hdrs, "Warning"); 681 apr_table_set(h->resp_hdrs, "Age", 691 apr_table_mergen(h->resp_hdrs, "Warning", 702 h->resp_hdrs, "Expires") == NULL) && (age > 86400)) { 710 apr_table_mergen(h->resp_hdrs, "Warning", 764 warn_head = apr_table_get(h->resp_hdrs, "Warning"); 767 apr_table_mergen(h->resp_hdrs, "Warning",
|
H A D | mod_cache.h | 94 apr_table_t *resp_hdrs; /* cached response headers */ member in struct:cache_handle
|
H A D | mod_cache.c | 667 const char *ct = apr_table_get(cache->handle->resp_hdrs, "Content-Type"); 904 r->headers_out = cache->stale_handle->resp_hdrs; 907 cache->stale_handle->resp_hdrs, "Content-Type")); 978 cc_out = cache_table_getm(r->pool, cache->stale_handle->resp_hdrs, 980 pragma = cache_table_getm(r->pool, cache->stale_handle->resp_hdrs, 989 cache->stale_handle->resp_hdrs, "Content-Type")); 1139 apr_table_t *left = cache->stale_handle->resp_hdrs; 1469 cache->handle->resp_hdrs, 1); 1886 r->err_headers_out = cache->stale_handle->resp_hdrs;
|
H A D | mod_cache_disk.c | 876 h->resp_hdrs = apr_table_make(r->pool, 20); 879 read_table(h, r, h->resp_hdrs, dobj->hdrs.fd);
|
H A D | mod_cache_socache.c | 633 h->resp_hdrs = apr_table_make(r->pool, 20); 636 if (APR_SUCCESS != read_table(h, r, h->resp_hdrs, sobj->buffer, buffer_len,
|
Completed in 32 milliseconds