aboutsummaryrefslogtreecommitdiff
path: root/docs/libcurl/libcurl-share.3
diff options
context:
space:
mode:
authorDaniel Stenberg <daniel@haxx.se>2004-03-15 10:23:14 +0000
committerDaniel Stenberg <daniel@haxx.se>2004-03-15 10:23:14 +0000
commit4ebf4f6e55e62ebf039453a4b1f79aeb85662fb8 (patch)
tree2367763f7df5343f553505433df6c24e75801994 /docs/libcurl/libcurl-share.3
parent4d86593f3c7d8ef1269e73c3b6965982cc0db1e5 (diff)
better mentioning of other functions to create proper hrefs in the web
version
Diffstat (limited to 'docs/libcurl/libcurl-share.3')
-rw-r--r--docs/libcurl/libcurl-share.320
1 files changed, 10 insertions, 10 deletions
diff --git a/docs/libcurl/libcurl-share.3 b/docs/libcurl/libcurl-share.3
index 6a8e22fb3..4745c122e 100644
--- a/docs/libcurl/libcurl-share.3
+++ b/docs/libcurl/libcurl-share.3
@@ -20,27 +20,27 @@ You can have multiple easy handles share data between them. Have them update
and use the \fBsame\fP cookie database or DNS cache! This way, each single
transfer will take advantage from data updates made by the other transfer(s).
.SH "SHARE OBJECT"
-You create a shared object with \fIcurl_share_init()\fP. It returns a handle
+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
-\fIcurl_share_setopt()\fP. Currently you can only share DNS and/or COOKIE
+\fIcurl_share_setopt(3)\fP. Currently you can only share DNS and/or COOKIE
data.
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()\fP too.
+\fIcurl_share_setopt(3)\fP too.
-Then, you make an easy handle to use this share, you set the CURLOPT_SHARE
-option with \fIcurl_easy_setopt\fP, and pass in share handle. You can make any
-number of easy handles share the same share handle.
+Then, you make an easy handle to use this share, you set the
+\fICURLOPT_SHARE\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.
-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.
+To make an easy handle stop using that particular share, you set
+\fICURLOPT_SHARE\fP to NULL for that easy handle. To make a handle stop
+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()\fP on the handle.
+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)"