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

/httpd/modules/http/
H A Dhttp_filters.c1015 apr_size_t bodybuf; local
1056 bodybuf = (apr_size_t)r->remaining + 32;
1060 bodybuf = 73730;
1063 bodyoff = bodyread = apr_palloc(r->pool, bodybuf);
1066 while ((!bodylen || bodybuf >= 32) &&
1067 (res = ap_get_client_block(r, bodyoff, bodybuf)) > 0) {
1069 bodybuf -= res;
1072 if (res > 0 && bodybuf < 32) {

Completed in 1222 milliseconds