Searched defs:lenp (Results 1 - 3 of 3) sorted by relevance
/httpd/modules/filters/ |
H A D | mod_request.c | 78 const char *lenp; local 92 lenp = apr_table_get(f->r->headers_in, "Content-Length"); 93 if (lenp) { 98 if (apr_strtoff(&ctx->remaining, lenp, &endstr, 10) 99 || endstr == lenp || *endstr || ctx->remaining < 0) {
|
/httpd/modules/http/ |
H A D | http_filters.c | 253 const char *tenc, *lenp; local 270 lenp = apr_table_get(f->r->headers_in, "Content-Length"); 297 lenp = NULL; 299 if (lenp) { 307 if (apr_strtoff(&ctx->remaining, lenp, &endstr, 10) 308 || endstr == lenp || *endstr || ctx->remaining < 0) { 1509 const char *lenp = apr_table_get(r->headers_in, "Content-Length"); local 1524 return (lenp) ? HTTP_BAD_REQUEST : HTTP_LENGTH_REQUIRED; 1529 else if (lenp) { 1532 if (apr_strtoff(&r->remaining, lenp, [all...] |
/httpd/modules/dav/main/ |
H A D | mod_dav.c | 2451 const char *lenp = apr_table_get(r->headers_in, "Content-Length"); local 2468 else if (lenp) { 2469 const char *pos = lenp; 2478 "Invalid Content-Length %s", lenp); 2482 r->remaining = apr_atoi64(lenp);
|
Completed in 22 milliseconds