Lines Matching refs:share
19 CURLSHOPT_SHARE - add data to share
26 CURLSHcode curl_share_setopt(CURLSH *share, CURLSHOPT_SHARE, long type);
32 and kept in the share object that was created with curl_share_init(3).
35 the share object share multiple types of data. Unset a type again by setting
44 It is not supported to share cookies between multiple concurrent threads.
50 the same multi handle share DNS cache by default without using this option.
60 It is not supported to share SSL sessions between multiple concurrent threads.
64 Put the connection cache in the share object and make all easy handles using
65 this share object share the connection cache.
67 It is not supported to share connections between multiple concurrent threads.
82 The Public Suffix List stored in the share object is made available to all
95 It is not supported to share the HSTS between multiple concurrent threads.
107 CURLSH *share = curl_share_init();
108 sh = curl_share_setopt(share, CURLSHOPT_SHARE, CURL_LOCK_DATA_COOKIE);