From 2d5fc39d3573c10a460cdeb2139631da62b8e391 Mon Sep 17 00:00:00 2001 From: Daniel Stenberg Date: Sat, 16 Sep 2006 21:50:29 +0000 Subject: Resize the connection cache upwards when adding more handles than what currently fits in the cache, to make the cache work better especially for pipelining cases but also for "mere" (persistent) connection re-use. --- lib/multi.c | 12 ++++++++++++ 1 file changed, 12 insertions(+) (limited to 'lib/multi.c') diff --git a/lib/multi.c b/lib/multi.c index 77c6a9fb4..2f7f32870 100644 --- a/lib/multi.c +++ b/lib/multi.c @@ -423,6 +423,18 @@ CURLMcode curl_multi_add_handle(CURLM *multi_handle, /* increase the node-counter */ multi->num_easy++; + + if((multi->num_easy+5) > multi->connc->num) { + /* we want the connection cache to have room for all easy transfers, and + some more so we have a margin of 5 for now, but we add the new amount + plus 10 to not have to do it for every new handle added */ + CURLcode res = Curl_ch_connc(easy_handle, multi->connc, + multi->num_easy + 10); + if(res) + /* TODO: we need to do some cleaning up here! */ + return res; + } + /* increase the alive-counter */ multi->num_alive++; -- cgit v1.2.3