mirror of
https://github.com/s3fs-fuse/s3fs-fuse.git
synced 2025-01-09 07:59:52 +00:00
CURL handles were not properly initialized to use DNS caching, or SSL session caching.
This commit is contained in:
parent
082eb24c12
commit
045f1e7906
@ -329,13 +329,13 @@ bool S3fsCurl::InitShareCurl(void)
|
||||
DPRN("curl_share_setopt(UNLOCKFUNC) returns %d(%s)", nSHCode, curl_share_strerror(nSHCode));
|
||||
return false;
|
||||
}
|
||||
if(!S3fsCurl::is_dns_cache){
|
||||
if(S3fsCurl::is_dns_cache){
|
||||
if(CURLSHE_OK != (nSHCode = curl_share_setopt(S3fsCurl::hCurlShare, CURLSHOPT_SHARE, CURL_LOCK_DATA_DNS))){
|
||||
DPRN("curl_share_setopt(DNS) returns %d(%s)", nSHCode, curl_share_strerror(nSHCode));
|
||||
return false;
|
||||
}
|
||||
}
|
||||
if(!S3fsCurl::is_ssl_session_cache){
|
||||
if(S3fsCurl::is_ssl_session_cache){
|
||||
if(CURLSHE_OK != (nSHCode = curl_share_setopt(S3fsCurl::hCurlShare, CURLSHOPT_SHARE, CURL_LOCK_DATA_SSL_SESSION))){
|
||||
DPRN("curl_share_setopt(SSL SESSION) returns %d(%s)", nSHCode, curl_share_strerror(nSHCode));
|
||||
return false;
|
||||
|
Loading…
Reference in New Issue
Block a user