Searched defs:pCurl (Results 1 - 2 of 2) sorted by relevance

/vbox/src/VBox/Runtime/common/misc/
H A Dhttp.cpp55 CURL *pCurl; member in struct:RTHTTPINTERNAL
107 CURL *pCurl = curl_easy_init();
108 if (!pCurl)
116 pHttpInt->pCurl = pCurl;
133 curl_easy_cleanup(pHttpInt->pCurl);
210 rcCurl = curl_easy_setopt(pHttpInt->pCurl, CURLOPT_PROXY, &szProxy[sizeof("http://") - 1]);
213 rcCurl = curl_easy_setopt(pHttpInt->pCurl, CURLOPT_PROXYPORT, 80);
219 rcCurl = curl_easy_setopt(pHttpInt->pCurl, CURLOPT_PROXY, &szProxy[sizeof("http://") - 1]);
237 int rcCurl = curl_easy_setopt(pHttpInt->pCurl, CURLOPT_PROX
[all...]
H A Ds3.cpp54 CURL *pCurl; member in struct:RTS3INTERNAL
249 CURLcode code = curl_easy_perform(pS3Int->pCurl);
252 curl_easy_getinfo(pS3Int->pCurl, CURLINFO_RESPONSE_CODE, &pS3Int->lLastResp);
342 pS3Int->pCurl)
345 curl_easy_reset(pS3Int->pCurl);
347 curl_easy_setopt(pS3Int->pCurl, CURLOPT_HTTP_VERSION, CURL_HTTP_VERSION_1_0);
350 curl_easy_setopt(pS3Int->pCurl, CURLOPT_USERAGENT, pS3Int->pszUserAgent);
355 curl_easy_setopt(pS3Int->pCurl, CURLOPT_NOPROGRESS, 0);
357 curl_easy_setopt(pS3Int->pCurl, CURLOPT_PROGRESSFUNCTION, rtS3ProgressCallback);
358 curl_easy_setopt(pS3Int->pCurl, CURLOPT_PROGRESSDAT
[all...]

Completed in 49 milliseconds