Lines Matching full:multi
19 curl_multi_add_handle - add an easy handle to a multi session
33 While an easy handle is added to a multi stack, you cannot and you must not
35 handle from the multi stack again, it is perfectly fine to use it with the
40 the multi handle when curl_multi_add_handle(3) is called.
42 When an easy interface is added to a multi handle, it is set to use a shared
43 connection cache owned by the multi handle. Removing and adding new easy
47 If you have CURLMOPT_TIMERFUNCTION(3) set in the multi handle (as you
53 The easy handle remains added to the multi handle until you remove it again
57 You should remove the easy handle from the multi stack before you terminate
58 first the easy handle and then the multi handle:
71 /* init a multi stack */
72 CURLM *multi = curl_multi_init();
79 curl_multi_add_handle(multi, http_handle);
80 curl_multi_add_handle(multi, http_handle2);
90 CURLMcode type, general libcurl multi interface error code.