Lines Matching refs:handle
20 curl_multi_add_handle - add an easy handle to a multi session
32 Adds the *easy handle* to the *multi_handle*.
34 While an easy handle is added to a multi stack, you cannot and you must not
35 use curl_easy_perform(3) on that handle. After having removed the easy
36 handle from the multi stack again, it is perfectly fine to use it with the
39 If the easy handle is not set to use a shared (CURLOPT_SHARE(3)) cache,
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
51 updated timer so that your main event loop gets the activity on this handle to
54 The easy handle remains added to the multi handle until you remove it again
56 specific easy handle is completed.
58 You should remove the easy handle from the multi stack before you terminate
59 first the easy handle and then the multi handle: