Searched defs:headers (Results 1 - 8 of 8) sorted by relevance

/httpd/modules/filters/
H A Dmod_reflector.c30 apr_table_t *headers; member in struct:__anon171
82 /* copy headers from in to out if configured */
83 apr_table_do(header_do, r, conf->headers, NULL);
180 conf->headers = apr_table_make(p, 8);
192 new->headers = apr_table_overlay(p, add->headers, base->headers);
202 apr_table_addn(cfg->headers, in, out ? out : in);
/httpd/modules/cache/
H A Dcache_util.c251 * request headers from the backend for whatever reason, at worst the
974 * Parse the Cache-Control and Pragma headers in one go, marking
979 const char *cc_header, const char *pragma_header, apr_table_t *headers)
1135 * Parse the Cache-Control, identifying and removing headers that
1139 apr_table_t *headers)
1157 apr_table_unset(headers, header);
1175 apr_table_unset(headers, header);
1194 * headers table that are allowed to be stored in a cache.
1206 * (yet) any headers populated.
1212 /* Make a copy of the headers, an
978 ap_cache_control(request_rec *r, cache_control_t *cc, const char *cc_header, const char *pragma_header, apr_table_t *headers) argument
1138 cache_control_remove(request_rec *r, const char *cc_header, apr_table_t *headers) argument
[all...]
H A Dmod_cache.c40 * Entity headers' names
125 /* find certain cache controlling headers */
237 /* cache_select() may have added conditional headers */
247 r, APLOGNO(00753) "Restoring request headers for %s",
266 * the headers. */
270 "Restoring request headers.");
639 * Deliver cached content (headers and body) up the stack.
801 * If we can, call cache_create_entity() and save the headers and body
825 apr_table_t *headers; local
966 headers
1765 cache_status(cache_handle_t *h, request_rec *r, apr_table_t *headers, ap_cache_status_e status, const char *reason) argument
[all...]
H A Dmod_cache_disk.c259 static const char* regen_key(apr_pool_t *p, apr_table_t *headers, argument
273 * - Handle multiple-value headers better. (sort them?)
281 * So the better solution may be to identify headers which should be
297 header = apr_table_get(headers, elts[i]);
440 /* Open the headers file */
636 /* Delete headers file */
647 "Failed to delete headers file %s from cache.",
789 "Premature end of cache headers.");
809 /* If we've finished reading the headers, break out of the loop. */
832 "CGI Interface Error: Script headers apparentl
[all...]
H A Dmod_cache_socache.c75 apr_table_t *headers_in; /* Input headers to save */
76 apr_table_t *headers_out; /* Output headers to save */
214 "Premature end of cache headers.");
273 static const char* regen_key(apr_pool_t *p, apr_table_t *headers, argument
287 * - Handle multiple-value headers better. (sort them?)
295 * So the better solution may be to identify headers which should be
311 header = apr_table_get(headers, elts[i]);
400 /* estimate the total cached size, given current headers */
406 "URL '%s' estimated headers size larger than limit, ignoring "
414 "URL '%s' body and headers large
[all...]
/httpd/modules/metadata/
H A Dmod_headers.c18 * mod_headers.c: Add/append/remove HTTP response headers
21 * The Header directive can be used to add/replace/remove HTTP headers
23 * to add/replace/remove HTTP headers before a request message is processed.
34 * headers with the same name
97 hdr_echo = 'e', /* echo headers from request to response */
139 /* echo_do is used for Header echo to iterate through the request headers*/
145 /* edit_do is used for Header edit to iterate through the request headers */
694 apr_table_t *headers = (apr_table_t *)v; local
696 apr_table_addn(headers, key, val);
700 static int do_headers_fixup(request_rec *r, apr_table_t *headers, argument
1010 AP_DECLARE_MODULE(headers) = variable
[all...]
/httpd/modules/proxy/
H A Dmod_proxy_http.c24 static int (*ap_proxy_clear_connection_fn)(request_rec *r, apr_table_t *headers) =
113 /* Clear all connection-based headers from the incoming headers table */
122 apr_table_t *headers = ((header_dptr*)data)->table; local
130 if (headers == NULL) {
131 ((header_dptr*)data)->table = headers = apr_table_make(pool, 2);
162 apr_table_addn(headers, key, warning);
168 static apr_table_t *ap_proxy_clean_warnings(apr_pool_t *p, apr_table_t *headers) argument
173 x.time = apr_date_parse_http(apr_table_get(headers, "Date"));
174 apr_table_do(clean_warning_headers, &x, headers, "Warnin
[all...]
H A Dproxy_util.c2418 /* Get the server port for the Via headers */
2590 /* Read until we find the end of the headers or run out of buffer */
3288 * Remove all headers referred to by the Connection header.
3292 static int ap_proxy_clear_connection(request_rec *r, apr_table_t *headers) argument
3300 x.is_req = (headers == r->headers_in);
3302 apr_table_unset(headers, "Proxy-Connection");
3304 apr_table_do(find_conn_headers, &x, headers, "Connection", NULL);
3305 apr_table_unset(headers, "Connection");
3323 apr_table_unset(headers, name);
3425 * Save the original headers i
[all...]

Completed in 1433 milliseconds