Searched refs:trlMax (Results 1 – 2 of 2) sorted by relevance
265 if(conn->trlPos >= conn->trlMax) { in Curl_httpchunk_read()269 if(conn->trlMax) { in Curl_httpchunk_read()270 conn->trlMax *= 2; in Curl_httpchunk_read()271 ptr = realloc(conn->trailer, conn->trlMax + 3); in Curl_httpchunk_read()274 conn->trlMax = 128; in Curl_httpchunk_read()275 ptr = malloc(conn->trlMax + 3); in Curl_httpchunk_read()
996 int trlMax; /* allocated buffer size */ member