Install curl-7.21.1.tar.bz2
[msysgit.git] / mingw / share / man / man3 / curl_multi_remove_handle.3
blobefecb109e6e90d78edf1f982de70f44b2b6f4d5a
1 .\"
2 .TH curl_multi_remove_handle 3 "6 March 2002" "libcurl 7.9.5" "libcurl Manual"
3 .SH NAME
4 curl_multi_remove_handle - remove an easy handle from a multi session
5 .SH SYNOPSIS
6 #include <curl/curl.h>
8 CURLMcode curl_multi_remove_handle(CURLM *multi_handle, CURL *easy_handle);
9 .ad
10 .SH DESCRIPTION
11 Removes a given easy_handle from the multi_handle. This will make the
12 specified easy handle be removed from this multi handle's control.
14 When the easy handle has been removed from a multi stack, it is again
15 perfectly legal to invoke \fIcurl_easy_perform()\fP on this easy handle.
17 Removing an easy handle while being used, will effectively halt the transfer
18 in progress involving that easy handle. All other easy handles and transfers
19 will remain unaffected.
20 .SH RETURN VALUE
21 CURLMcode type, general libcurl multi interface error code.
22 .SH "SEE ALSO"
23 .BR curl_multi_cleanup "(3)," curl_multi_init "(3)"