Searched defs:tenc (Results 1 - 4 of 4) sorted by relevance

/httpd/modules/proxy/
H A Dmod_proxy_ajp.c178 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 Dhttp_filters.c253 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 Dprotocol.c1102 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 Dmod_dav.c2450 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