Searched defs:cl_header (Results 1 - 4 of 4) sorted by relevance
/httpd/modules/apreq/ |
H A D | filter.c | 115 const char *cl_header; local 123 cl_header = apr_table_get(r->headers_in, "Content-Length"); 125 if (cl_header != NULL) { 127 apr_uint64_t content_length = apr_strtoi64(cl_header, &dummy, 10); 131 "Invalid Content-Length header (%s)", cl_header); 139 cl_header, ctx->read_limit);
|
/httpd/modules/cache/ |
H A D | mod_cache_disk.c | 1266 const char *cl_header = apr_table_get(r->headers_out, "Content-Length"); local 1295 if (cl_header) { 1296 apr_int64_t cl = apr_atoi64(cl_header);
|
H A D | mod_cache_socache.c | 1067 const char *cl_header = apr_table_get(r->headers_out, "Content-Length"); local 1078 if (cl_header) { 1079 apr_int64_t cl = apr_atoi64(cl_header);
|
/httpd/server/ |
H A D | apreq_module_cgi.c | 348 const char *cl_header = cgi_header_in(handle, "Content-Length"); local 354 if (cl_header != NULL) { 356 apr_int64_t content_length = apr_strtoi64(cl_header, &dummy, 10); 361 "Invalid Content-Length header (%s)", cl_header); 369 cl_header, req->read_limit);
|
Completed in 153 milliseconds