* Create a new table consisting of those elements from an input * headers table that are allowed to be stored in a cache. */
| 1240 | * headers table that are allowed to be stored in a cache. |
| 1241 | */ |
| 1242 | CACHE_DECLARE(apr_table_t *)ap_cache_cacheable_headers_in(request_rec *r) |
| 1243 | { |
| 1244 | return ap_cache_cacheable_headers(r->pool, r->headers_in, r->server); |
| 1245 | } |
| 1246 | |
| 1247 | /* |
| 1248 | * Create a new table consisting of those elements from an output |
no test coverage detected