diff options
author | David Strauss <david@davidstrauss.net> | 2013-04-11 20:36:43 +0200 |
---|---|---|
committer | Daniel Stenberg <daniel@haxx.se> | 2013-04-12 13:35:29 +0200 |
commit | 8ffbeeda8088714eab232f3d67f5329826ca014e (patch) | |
tree | bd7a53c172ad88d658da351be446a59a8ced70a7 /docs/libcurl | |
parent | 1d1ffaf9122c4f0d60baced5e5dcef05865c6560 (diff) |
libcurl-share.3: update what it does and does not share.
Update sharing interface documentation to provide exhaustive list of
what it does and does not share.
Diffstat (limited to 'docs/libcurl')
-rw-r--r-- | docs/libcurl/libcurl-share.3 | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/docs/libcurl/libcurl-share.3 b/docs/libcurl/libcurl-share.3 index 583902152..1e6c1392f 100644 --- a/docs/libcurl/libcurl-share.3 +++ b/docs/libcurl/libcurl-share.3 @@ -34,8 +34,10 @@ 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 -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). +and use the \fBsame\fP cookie database, DNS cache, TLS session cache! This +way, each single transfer will take advantage from data updates made by the +other transfer(s). The sharing interface, however, does not share active or +persistent connections between different easy handles. .SH "SHARE OBJECT" You create a shared object with \fIcurl_share_init(3)\fP. It returns a handle for a newly created one. |