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 --- .../curl-7.29.0/docs/libcurl/libcurl-share.html | 63 ++++++++++++++++++++++ 1 file changed, 63 insertions(+) create mode 100644 plugins/FTPFileYM/curl-7.29.0/docs/libcurl/libcurl-share.html (limited to 'plugins/FTPFileYM/curl-7.29.0/docs/libcurl/libcurl-share.html') diff --git a/plugins/FTPFileYM/curl-7.29.0/docs/libcurl/libcurl-share.html b/plugins/FTPFileYM/curl-7.29.0/docs/libcurl/libcurl-share.html new file mode 100644 index 0000000000..8802d5b7f4 --- /dev/null +++ b/plugins/FTPFileYM/curl-7.29.0/docs/libcurl/libcurl-share.html @@ -0,0 +1,63 @@ + + +libcurl-share man page + + + + +

NAME

+

libcurl-share - how to use the share interface

DESCRIPTION

+

This is an overview on how to use the libcurl share interface in your C programs. There are specific man pages for each function mentioned in here. +

All functions in the share interface are prefixed with curl_share. +

OBJECTIVES

+

The share interface was added to enable sharing of data between curl "handles".

ONE SET OF DATA - MANY TRANSFERS

+

You can have multiple easy handles share data between them. Have them update and use the same cookie database or DNS cache! This way, each single transfer will take advantage from data updates made by the other transfer(s).

SHARE OBJECT

+

You create a shared object with curl_share_init(3). It returns a handle for a newly created one. +

You tell the shared object what data you want it to share by using curl_share_setopt(3). +

Since you can use this share from multiple threads, and libcurl has no internal thread synchronization, you must provide mutex callbacks if you're using this multi-threaded. You set lock and unlock functions with curl_share_setopt(3) too. +

Then, you make an easy handle to use this share, you set the CURLOPT_SHARE option with curl_easy_setopt(3), and pass in share handle. You can make any number of easy handles share the same share handle. +

To make an easy handle stop using that particular share, you set CURLOPT_SHARE to NULL for that easy handle. To make a handle stop sharing a particular data, you can CURLSHOPT_UNSHARE it. +

When you're done using the share, make sure that no easy handle is still using it, and call curl_share_cleanup(3) on the handle.

SEE ALSO

+

curl_share_init (3) curl_share_setopt (3) curl_share_cleanup (3)

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