Resync
[CMakeLuaTailorHgBridge.git] / CMakeLua / Utilities / cmcurl-7.19.0 / docs / libcurl / curl_multi_remove_handle.3
blobf840ded88030ab11916a49f4224b252c8a569e0f
1 .\" $Id: curl_multi_remove_handle.3,v 1.1.1.1 2008-09-23 16:32:05 hoffman Exp $
2 .\"
3 .TH curl_multi_remove_handle 3 "6 March 2002" "libcurl 7.9.5" "libcurl Manual"
4 .SH NAME
5 curl_multi_remove_handle - remove an easy handle from a multi session
6 .SH SYNOPSIS
7 #include <curl/curl.h>
9 CURLMcode curl_multi_remove_handle(CURLM *multi_handle, CURL *easy_handle);
10 .ad
11 .SH DESCRIPTION
12 Removes a given easy_handle from the multi_handle. This will make the
13 specified easy handle be removed from this multi handle's control.
15 When the easy handle has been removed from a multi stack, it is again
16 perfectly legal to invoke \fIcurl_easy_perform()\fP on this easy handle.
18 Removing a handle while being used, will effectively halt all transfers in
19 progress.
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)"