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 a handle while being used, will effectively halt all transfers
22 in progress.
23
25 CURLMcode type, general libcurl multi interface error code.
26
28 curl_multi_cleanup(3),curl_multi_init(3)
29
30
31
32libcurl 7.9.5 6 March 2002 curl_multi_remove_handle(3)