Searched refs:ntoread (Results 1 – 2 of 2) sorted by relevance
789 if (req->ntoread < 0) { in evhttp_handle_chunked_read()791 ev_int64_t ntoread; in evhttp_handle_chunked_read() local802 ntoread = evutil_strtoll(p, &endp, 16); in evhttp_handle_chunked_read()805 ntoread < 0); in evhttp_handle_chunked_read()811 req->ntoread = ntoread; in evhttp_handle_chunked_read()812 if (req->ntoread == 0) { in evhttp_handle_chunked_read()820 if (len < req->ntoread) in evhttp_handle_chunked_read()825 EVBUFFER_DATA(buf), (size_t)req->ntoread); in evhttp_handle_chunked_read()826 evbuffer_drain(buf, (size_t)req->ntoread); in evhttp_handle_chunked_read()827 req->ntoread = -1; in evhttp_handle_chunked_read()[all …]
223 ev_int64_t ntoread; member