1curl_multi_remove_handle(3) libcurl Manual curl_multi_remove_handle(3)
2
3
4
6 curl_multi_remove_handle - remove an easy handle from a multi session
7
9 #include <curl/curl.h>
10
11 CURLMcode curl_multi_remove_handle(CURLM *multi_handle, CURL *easy_han‐
12 dle);
13
15 Removes a given easy_handle from the multi_handle. This will make the
16 specified easy handle be removed from this multi handle's control.
17
18 When the easy handle has been removed from a multi stack, it is again
19 perfectly legal to invoke curl_easy_perform() on this easy handle.
20
21 Removing an easy handle while being used, will effectively halt the
22 transfer in progress involving that easy handle. All other easy handles
23 and transfers will remain unaffected.
24
26 CURLMcode type, general libcurl multi interface error code.
27
29 curl_multi_cleanup(3),curl_multi_init(3)
30
31
32
33libcurl 7.9.5 6 March 2002 curl_multi_remove_handle(3)