Searched refs:ntoread (Results 1 – 3 of 3) sorted by relevance
925 if (req->ntoread < 0) { in evhttp_handle_chunked_read()927 ev_int64_t ntoread; in evhttp_handle_chunked_read() local938 ntoread = evutil_strtoll(p, &endp, 16); in evhttp_handle_chunked_read()941 ntoread < 0); in evhttp_handle_chunked_read()949 if ((ev_uint64_t)ntoread > EV_SIZE_MAX - req->body_size) { in evhttp_handle_chunked_read()953 if (req->body_size + (size_t)ntoread > req->evcon->max_body_size) { in evhttp_handle_chunked_read()959 req->body_size += (size_t)ntoread; in evhttp_handle_chunked_read()960 req->ntoread = ntoread; in evhttp_handle_chunked_read()961 if (req->ntoread == 0) { in evhttp_handle_chunked_read()970 if (req->ntoread > EV_SSIZE_MAX) { in evhttp_handle_chunked_read()[all …]
328 o http: fix formatter for pritnf for req->ntoread (osx) (1cbf26f6 Azat Khuzhin)
107 ev_int64_t ntoread; member