From dcce39da3e6f7485dca39950dfc835563de3c3ea Mon Sep 17 00:00:00 2001 From: Kirill Volinsky Date: Mon, 25 Feb 2013 10:15:31 +0000 Subject: 1 step: libcurl static link git-svn-id: http://svn.miranda-ng.org/main/trunk@3763 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- .../docs/libcurl/curl_multi_add_handle.html | 63 ++++++++++++++++++++++ 1 file changed, 63 insertions(+) create mode 100644 plugins/FTPFileYM/curl-7.29.0/docs/libcurl/curl_multi_add_handle.html (limited to 'plugins/FTPFileYM/curl-7.29.0/docs/libcurl/curl_multi_add_handle.html') diff --git a/plugins/FTPFileYM/curl-7.29.0/docs/libcurl/curl_multi_add_handle.html b/plugins/FTPFileYM/curl-7.29.0/docs/libcurl/curl_multi_add_handle.html new file mode 100644 index 0000000000..2941352498 --- /dev/null +++ b/plugins/FTPFileYM/curl-7.29.0/docs/libcurl/curl_multi_add_handle.html @@ -0,0 +1,63 @@ + + +curl_multi_add_handle man page + + + + +

NAME

+

curl_multi_add_handle - add an easy handle to a multi session

SYNOPSIS

+

#include <curl/curl.h> +

CURLMcode curl_multi_add_handle(CURLM *multi_handle, CURL *easy_handle); +

DESCRIPTION

+

Adds a standard easy handle to the multi stack. This function call will make this multi_handle control the specified easy_handle. Furthermore, libcurl now initiates the connection associated with the specified easy_handle. +

When an easy handle has been added to a multi stack, you can not and you must not use curl_easy_perform(3) on that handle! +

If the easy handle is not set to use a shared (CURLOPT_SHARE) or global DNS cache (CURLOPT_DNS_USE_GLOBAL_CACHE), it will be made to use the DNS cache that is shared between all easy handles within the multi handle when curl_multi_add_handle(3) is called. +

The easy handle will remain added until you remove it again with curl_multi_remove_handle(3). You should remove the easy handle from the multi stack before you terminate first the easy handle and then the multi handle: +

1 - curl_multi_remove_handle(3) +

2 - curl_easy_cleanup(3) +

3 - curl_multi_cleanup(3)

RETURN VALUE

+

CURLMcode type, general libcurl multi interface error code.

SEE ALSO

+

curl_multi_cleanup (3) curl_multi_init (3)

+ This HTML page was made with roffit. + -- cgit v1.2.3