diff options
Diffstat (limited to 'lib')
-rw-r--r-- | lib/easy.c | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/easy.c b/lib/easy.c index 55144c7b9..6601d9b16 100644 --- a/lib/easy.c +++ b/lib/easy.c @@ -442,6 +442,9 @@ CURLcode curl_easy_perform(CURL *easy) data->multi_easy = multi; } + /* Copy the MAXCONNECTS option to the multi handle */ + curl_multi_setopt(multi, CURLMOPT_MAXCONNECTS, data->set.maxconnects); + mcode = curl_multi_add_handle(multi, easy); if(mcode) { curl_multi_cleanup(multi); |