1curl_multi_remove_handle(3)     libcurl Manual     curl_multi_remove_handle(3)
2
3
4

NAME

6       curl_multi_remove_handle - remove an easy handle from a multi session
7

SYNOPSIS

9       #include <curl/curl.h>
10
11       CURLMcode curl_multi_remove_handle(CURLM *multi_handle, CURL *easy_han‐
12       dle);
13

DESCRIPTION

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(3) on this easy handle.
20
21       Removing an easy handle while being used is perfectly  legal  and  will
22       effectively  halt  the transfer in progress involving that easy handle.
23       All other easy handles and transfers will remain unaffected.
24
25       It is fine to remove a handle at any time during a transfer,  just  not
26       from within any libcurl callback function.
27

RETURN VALUE

29       CURLMcode type, general libcurl multi interface error code.
30

SEE ALSO

32       curl_multi_cleanup(3),curl_multi_init(3), curl_multi_add_handle(3)
33
34
35
36libcurl 7.79.1                 November 05, 2020   curl_multi_remove_handle(3)
Impressum