Install curl-7.19.5.tar.bz2
[msysgit/bosko.git] / mingw / share / man / man3 / curl_multi_remove_handle.3
blob7fb4761c8ea36e3518f285456fd35dc8144ca1b9
1 .\" $Id: curl_multi_remove_handle.3,v 1.5 2009-04-07 20:51:01 bagder 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 an easy handle while being used, will effectively halt the transfer
19 in progress involving that easy handle. All other easy handles and transfers
20 will remain unaffected.
21 .SH RETURN VALUE
22 CURLMcode type, general libcurl multi interface error code.
23 .SH "SEE ALSO"
24 .BR curl_multi_cleanup "(3)," curl_multi_init "(3)"