Lines Matching refs:multi
20 curl_multi_add_handle - add an easy handle to a multi session
34 While an easy handle is added to a multi stack, you cannot and you must not
36 handle from the multi stack again, it is perfectly fine to use it with the
41 the multi handle when curl_multi_add_handle(3) is called.
43 When an easy interface is added to a multi handle, it is set to use a shared
44 connection cache owned by the multi handle. Removing and adding new easy
48 If you have CURLMOPT_TIMERFUNCTION(3) set in the multi handle (as you
54 The easy handle remains added to the multi handle until you remove it again
58 You should remove the easy handle from the multi stack before you terminate
59 first the easy handle and then the multi handle:
74 /* init a multi stack */
75 CURLM *multi = curl_multi_init();
82 curl_multi_add_handle(multi, http_handle);
83 curl_multi_add_handle(multi, http_handle2);
91 CURLMcode type, general libcurl multi interface error code.