Changeset 45454 in vbox for trunk/src/VBox/Runtime
- Timestamp:
- Apr 10, 2013 12:16:33 PM (12 years ago)
- svn:sync-xref-src-repo-rev:
- 84891
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/common/misc/http.cpp
r45406 r45454 47 47 typedef struct RTHTTPINTERNAL 48 48 { 49 /** magic value */ 49 50 uint32_t u32Magic; 51 /** cURL handle */ 50 52 CURL *pCurl; 51 53 long lLastResp; 54 /** custom headers */ 52 55 struct curl_slist *pHeaders; 56 /** CA certificate for HTTPS authentication check */ 53 57 const char *pcszCAFile; 58 /** abort the current HTTP request if true */ 59 bool fAbort; 54 60 } RTHTTPINTERNAL; 55 61 typedef RTHTTPINTERNAL *PRTHTTPINTERNAL; … … 129 135 } 130 136 131 static size_trtHttpWriteData(void *pvBuf, size_t cb, size_t n, void *pvUser)137 static DECLCALLBACK(size_t) rtHttpWriteData(void *pvBuf, size_t cb, size_t n, void *pvUser) 132 138 { 133 139 PRTHTTPMEMCHUNK pMem = (PRTHTTPMEMCHUNK)pvUser; … … 142 148 } 143 149 return cbAll; 150 } 151 152 static DECLCALLBACK(int) rtHttpProgress(void *pData, double DlTotal, double DlNow, 153 double UlTotal, double UlNow) 154 { 155 PRTHTTPINTERNAL pHttpInt = (PRTHTTPINTERNAL)pData; 156 AssertReturn(pHttpInt->u32Magic == RTHTTP_MAGIC, 1); 157 158 return pHttpInt->fAbort ? 1 : 0; 159 } 160 161 RTR3DECL(int) RTHttpAbort(RTHTTP hHttp) 162 { 163 PRTHTTPINTERNAL pHttpInt = hHttp; 164 RTHTTP_VALID_RETURN(pHttpInt); 165 166 pHttpInt->fAbort = true; 167 168 return VINF_SUCCESS; 144 169 } 145 170 … … 278 303 RTHTTP_VALID_RETURN(pHttpInt); 279 304 305 pHttpInt->fAbort = false; 306 280 307 int rcCurl = curl_easy_setopt(pHttpInt->pCurl, CURLOPT_URL, pcszUrl); 281 308 if (CURL_FAILED(rcCurl)) … … 303 330 return VERR_INTERNAL_ERROR; 304 331 rcCurl = curl_easy_setopt(pHttpInt->pCurl, CURLOPT_WRITEDATA, (void*)&chunk); 332 if (CURL_FAILED(rcCurl)) 333 return VERR_INTERNAL_ERROR; 334 rcCurl = curl_easy_setopt(pHttpInt->pCurl, CURLOPT_PROGRESSFUNCTION, &rtHttpProgress); 335 if (CURL_FAILED(rcCurl)) 336 return VERR_INTERNAL_ERROR; 337 rcCurl = curl_easy_setopt(pHttpInt->pCurl, CURLOPT_PROGRESSDATA, (void*)pHttpInt); 338 if (CURL_FAILED(rcCurl)) 339 return VERR_INTERNAL_ERROR; 340 rcCurl = curl_easy_setopt(pHttpInt->pCurl, CURLOPT_NOPROGRESS, (long)0); 305 341 if (CURL_FAILED(rcCurl)) 306 342 return VERR_INTERNAL_ERROR; … … 356 392 rc = VERR_HTTP_CACERT_WRONG_FORMAT; 357 393 break; 394 case CURLE_ABORTED_BY_CALLBACK: 395 /* forcefully aborted */ 396 rc = VERR_HTTP_ABORTED; 397 break; 358 398 default: 359 399 break;
Note:
See TracChangeset
for help on using the changeset viewer.