Searched refs:ntoread (Results 1 – 3 of 3) sorted by relevance
908 if (req->ntoread < 0) { in evhttp_handle_chunked_read()910 ev_int64_t ntoread; in evhttp_handle_chunked_read() local921 ntoread = evutil_strtoll(p, &endp, 16); in evhttp_handle_chunked_read()924 ntoread < 0); in evhttp_handle_chunked_read()932 if ((ev_uint64_t)ntoread > EV_SIZE_MAX - req->body_size) { in evhttp_handle_chunked_read()936 if (req->body_size + (size_t)ntoread > req->evcon->max_body_size) { in evhttp_handle_chunked_read()942 req->body_size += (size_t)ntoread; in evhttp_handle_chunked_read()943 req->ntoread = ntoread; in evhttp_handle_chunked_read()944 if (req->ntoread == 0) { in evhttp_handle_chunked_read()953 if (req->ntoread > EV_SSIZE_MAX) { in evhttp_handle_chunked_read()[all …]
15 o http: fix formatter for pritnf for req->ntoread (osx) (1cbf26f6 Azat Khuzhin)
107 ev_int64_t ntoread; member