HomeSort by relevance Sort by last modified time
    Searched refs:maxconnects (Results 1 - 5 of 5) sorted by null

  /external/curl/lib/
multihandle.h 120 long maxconnects; /* if >0, a fixed limit of the maximum number of entries member in struct:Curl_multi
multi.c 338 multi->maxconnects = -1;
500 /* data->multi->maxconnects can be negative, deal with it. */
501 size_t maxconnects = local
502 (data->multi->maxconnects < 0) ? data->multi->num_easy * 4:
503 data->multi->maxconnects;
509 if(maxconnects > 0 &&
510 data->state.conn_cache->num_connections > maxconnects) {
    [all...]
easy.c 768 /* Copy the MAXCONNECTS option to the multi handle */
769 curl_multi_setopt(multi, CURLMOPT_MAXCONNECTS, data->set.maxconnects);
urldata.h 1737 size_t maxconnects; \/* Max idle connections in the connection cache *\/ member in struct:UserDefined
    [all...]
url.c 666 data->set.maxconnects = DEFAULT_CONNCACHE_SIZE; /* for easy handles */
734 data->set.maxconnects = va_arg(param, long);
    [all...]

Completed in 69 milliseconds