API Overview
Docs
API: easy API: multi API: share API: URL API: WebSocket Environment vars Errors Examples Security Symbols Tutorial
easy setopt options easy getinfo options multi setopt options TLS options
Functions
All functions curl_easy_getinfo curl_easy_init curl_easy_perform curl_easy_reset curl_easy_setopt curl_multi_add_handle curl_multi_init curl_multi_perform curl_multi_remove_handle curl_multi_setopt
curl / libcurl / API / share interface

share interface overview

Related:
All functions
API
Examples

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, DNS cache, TLS session cache and/or connection cache. This way, each single transfer takes advantage from data updates made by the other transfer(s).

Share object

You create a shared object with curl_share_init. 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.

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

Then, you make an easy handle to use this share, you set the CURLOPT_SHARE option with curl_easy_setopt, 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 are done using the share, make sure that no easy handle is still using it, and call curl_share_cleanup on the handle.

See also

curl_share_cleanup(3), curl_share_init(3), curl_share_setopt(3), libcurl-easy(3), libcurl-errors(3), libcurl-multi(3)

This HTML page was made with roffit.

AltStyle によって変換されたページ (->オリジナル) /