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

  /external/curl/lib/
multihandle.h 118 long maxconnects; /* if >0, a fixed limit of the maximum number of entries member in struct:Curl_multi
multi.c 336 multi->maxconnects = -1;
490 /* data->multi->maxconnects can be negative, deal with it. */
491 size_t maxconnects = local
492 (data->multi->maxconnects < 0) ? data->multi->num_easy * 4:
493 data->multi->maxconnects;
499 if(maxconnects > 0 &&
500 data->state.conn_cache->num_connections > maxconnects) {
    [all...]
easy.c 795 /* Copy the MAXCONNECTS option to the multi handle */
796 curl_multi_setopt(multi, CURLMOPT_MAXCONNECTS, data->set.maxconnects);
urldata.h 1673 size_t maxconnects; \/* Max idle connections in the connection cache *\/ member in struct:UserDefined
    [all...]
url.c 669 data->set.maxconnects = DEFAULT_CONNCACHE_SIZE; /* for easy handles */
732 data->set.maxconnects = va_arg(param, long);
    [all...]

Completed in 61 milliseconds