etlegacy-libs/curl/docs/libcurl/libcurl-share.3

67 lines
3 KiB
Groff
Raw Normal View History

2012-06-01 15:23:17 +00:00
.\" **************************************************************************
.\" * _ _ ____ _
.\" * Project ___| | | | _ \| |
.\" * / __| | | | |_) | |
.\" * | (__| |_| | _ <| |___
.\" * \___|\___/|_| \_\_____|
.\" *
2018-02-04 17:52:34 +00:00
.\" * Copyright (C) 1998 - 2017, Daniel Stenberg, <daniel@haxx.se>, et al.
2012-06-01 15:23:17 +00:00
.\" *
.\" * This software is licensed as described in the file COPYING, which
.\" * you should have received as part of this distribution. The terms
2016-09-16 04:29:17 +00:00
.\" * are also available at https://curl.haxx.se/docs/copyright.html.
2012-06-01 15:23:17 +00:00
.\" *
.\" * You may opt to use, copy, modify, merge, publish, distribute and/or sell
.\" * copies of the Software, and permit persons to whom the Software is
.\" * furnished to do so, under the terms of the COPYING file.
.\" *
.\" * This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
.\" * KIND, either express or implied.
.\" *
.\" **************************************************************************
2019-01-03 15:09:10 +00:00
.TH libcurl-share 3 "November 27, 2017" "libcurl 7.63.0" "libcurl share interface"
2017-07-01 14:06:24 +00:00
2012-06-01 15:23:17 +00:00
.SH NAME
libcurl-share \- how to use the share interface
.SH 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.
.SH "OBJECTIVES"
The share interface was added to enable sharing of data between curl
\&"handles".
.SH "ONE SET OF DATA - MANY TRANSFERS"
You can have multiple easy handles share data between them. Have them update
2018-02-04 17:52:34 +00:00
and use the \fBsame\fP cookie database, DNS cache, TLS session cache and/or
connection cache! This way, each single transfer will take advantage from data
updates made by the other transfer(s).
2012-06-01 15:23:17 +00:00
.SH "SHARE OBJECT"
You create a shared object with \fIcurl_share_init(3)\fP. It returns a handle
for a newly created one.
You tell the shared object what data you want it to share by using
2016-09-16 04:29:17 +00:00
\fIcurl_share_setopt(3)\fP.
2012-06-01 15:23:17 +00:00
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
\fIcurl_share_setopt(3)\fP too.
Then, you make an easy handle to use this share, you set the
2016-09-16 04:29:17 +00:00
\fICURLOPT_SHARE(3)\fP option with \fIcurl_easy_setopt(3)\fP, and pass in
share handle. You can make any number of easy handles share the same share
handle.
2012-06-01 15:23:17 +00:00
To make an easy handle stop using that particular share, you set
2016-09-16 04:29:17 +00:00
\fICURLOPT_SHARE(3)\fP to NULL for that easy handle. To make a handle stop
2012-06-01 15:23:17 +00:00
sharing a particular data, you can \fICURLSHOPT_UNSHARE\fP it.
When you're done using the share, make sure that no easy handle is still using
it, and call \fIcurl_share_cleanup(3)\fP on the handle.
.SH "SEE ALSO"
.BR curl_share_init "(3), " curl_share_setopt "(3), " curl_share_cleanup "(3)"
2016-09-16 04:29:17 +00:00
.BR libcurl-errors "(3), " libcurl-easy "(3), " libcurl-multi "(3) "