Sortix nightly manual
This manual documents Sortix nightly, a development build that has not been officially released. You can instead view this document in the latest official manual.
libcurl-share(3) | Library Functions Manual | libcurl-share(3) |
NAME
libcurl-share - how to use the share interfaceDESCRIPTION
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.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(3). It returns a handle for a newly created one.SEE ALSO
curl_share_cleanup(3), curl_share_init(3), curl_share_setopt(3), libcurl-easy(3), libcurl-errors(3), libcurl-multi(3)2024-11-21 | libcurl |