aboutsummaryrefslogtreecommitdiff
path: root/lib/multi.c
diff options
context:
space:
mode:
Diffstat (limited to 'lib/multi.c')
-rw-r--r--lib/multi.c12
1 files changed, 12 insertions, 0 deletions
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++;