Searched defs:content_length (Results 1 - 6 of 6) sorted by relevance
/httpd/modules/filters/ |
H A D | mod_data.c | 77 const char *content_length; local 106 content_length = apr_table_get(r->headers_out, "Content-Length"); 107 if (content_length) { 110 clen = apr_atoi64(content_length);
|
H A D | mod_reflector.c | 66 const char *content_length, *content_type; local 93 if ((content_length = apr_table_get(r->headers_in, "Content-Length"))) { 96 apr_strtoff(&offset, content_length, NULL, 10);
|
/httpd/modules/apreq/ |
H A D | filter.c | 127 apr_uint64_t content_length = apr_strtoi64(cl_header, &dummy, 10); local 135 else if (content_length > ctx->read_limit) {
|
/httpd/modules/proxy/ |
H A D | mod_proxy_ajp.c | 193 apr_off_t content_length = 0; local 251 content_length = get_content_length(r); 308 else if (content_length > 0) { 312 content_length);
|
H A D | mod_proxy.h | 262 int content_length; /* length of the content */ member in struct:__anon282
|
/httpd/server/ |
H A D | apreq_module_cgi.c | 356 apr_int64_t content_length = apr_strtoi64(cl_header, &dummy, 10); local 364 else if ((apr_uint64_t)content_length > req->read_limit) {
|
Completed in 56 milliseconds