Searched defs:lenp (Results 1 - 3 of 3) sorted by relevance

/httpd/modules/filters/
H A Dmod_request.c78 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 Dhttp_filters.c253 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 Dmod_dav.c2451 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