Searched defs:tenc (Results 1 - 4 of 4) sorted by relevance
/httpd/modules/proxy/ |
H A D | mod_proxy_ajp.c | 178 const char *tenc; local 245 tenc = apr_table_get(r->headers_in, "Transfer-Encoding"); 246 if (tenc && (strcasecmp(tenc, "chunked") == 0)) {
|
/httpd/modules/http/ |
H A D | http_filters.c | 253 const char *tenc, *lenp; local 269 tenc = apr_table_get(f->r->headers_in, "Transfer-Encoding"); 272 if (tenc) { 273 if (strcasecmp(tenc, "chunked") == 0 /* fast path */ 274 || ap_find_last_token(f->r->pool, tenc, "chunked")) { 286 " using read-until-close", tenc); 287 tenc = NULL; 294 "Unknown Transfer-Encoding: %s", tenc); 1508 const char *tenc = apr_table_get(r->headers_in, "Transfer-Encoding"); local 1515 if (tenc) { [all...] |
/httpd/server/ |
H A D | protocol.c | 1102 const char *tenc; local 1115 tenc = apr_table_get(r->headers_in, "Transfer-Encoding"); 1116 if (tenc) { 1123 if (!(strcasecmp(tenc, "chunked") == 0 /* fast path */ 1124 || ap_find_last_token(r->pool, tenc, "chunked"))) { 1127 "(%s): %s", tenc, r->uri);
|
/httpd/modules/dav/main/ |
H A D | mod_dav.c | 2450 const char *tenc = apr_table_get(r->headers_in, "Transfer-Encoding"); local 2458 if (tenc) { 2459 if (strcasecmp(tenc, "chunked")) { 2462 "Unknown Transfer-Encoding %s", tenc);
|
Completed in 190 milliseconds