From ac48668a549fe76648e0ac3f93c9943383e043f5 Mon Sep 17 00:00:00 2001 From: Kirill Volinsky Date: Sun, 10 Nov 2013 18:02:01 +0000 Subject: curl folder renamed git-svn-id: http://svn.miranda-ng.org/main/trunk@6858 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c --- .../docs/libcurl/curl_multi_add_handle.html | 63 ---------------------- 1 file changed, 63 deletions(-) delete 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 deleted file mode 100644 index 2941352498..0000000000 --- a/plugins/FTPFileYM/curl-7.29.0/docs/libcurl/curl_multi_add_handle.html +++ /dev/null @@ -1,63 +0,0 @@ - - -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