Searched refs:nread_resp (Results 1 – 2 of 2) sorted by relevance
140 pp->nread_resp = 0; in Curl_pp_init()281 ptr=buf + pp->nread_resp; in Curl_pp_readresp()286 while((pp->nread_resp<BUFSIZE) && (keepon && !result)) { in Curl_pp_readresp()308 DEBUGASSERT((ptr+BUFSIZE-pp->nread_resp) <= (buf+BUFSIZE+1)); in Curl_pp_readresp()309 result = Curl_read(conn, sockfd, ptr, BUFSIZE-pp->nread_resp, in Curl_pp_readresp()345 pp->nread_resp += gotbytes; in Curl_pp_readresp()380 *size = pp->nread_resp; /* size of the response */ in Curl_pp_readresp()381 pp->nread_resp = 0; /* restart */ in Curl_pp_readresp()414 else if(pp->nread_resp > BUFSIZE/2) { in Curl_pp_readresp()436 pp->nread_resp = 0; /* start over from scratch in the buffer */ in Curl_pp_readresp()[all …]
51 size_t nread_resp; /* number of bytes currently read of a server response */ member