Changeset 53074 in vbox for trunk/src/VBox/Runtime/common/misc
- Timestamp:
- Oct 16, 2014 10:37:19 AM (10 years ago)
- svn:sync-xref-src-repo-rev:
- 96580
- Location:
- trunk/src/VBox/Runtime/common/misc
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/misc/http.cpp
r52217 r53074 488 488 if (CURL_FAILED(rcCurl)) 489 489 return VERR_INTERNAL_ERROR; 490 rcCurl = curl_easy_setopt(pHttpInt->pCurl, CURLOPT_SSLVERSION, (long)CURL_SSLVERSION_TLSv1); 491 if (CURL_FAILED(rcCurl)) 492 return VERR_INVALID_PARAMETER; 490 493 491 494 rcCurl = curl_easy_perform(pHttpInt->pCurl); -
trunk/src/VBox/Runtime/common/misc/s3.cpp
r42261 r53074 997 997 curl_easy_setopt(pS3Int->pCurl, CURLOPT_READFUNCTION, rtS3ReadFileCallback); 998 998 curl_easy_setopt(pS3Int->pCurl, CURLOPT_READDATA, &hFile); 999 curl_easy_setopt(pS3Int->pCurl, CURLOPT_SSLVERSION, (long)CURL_SSLVERSION_TLSv1); 999 1000 1000 1001 /* Start the request */
Note:
See TracChangeset
for help on using the changeset viewer.