Changeset 45454 in vbox for trunk/include
- Timestamp:
- Apr 10, 2013 12:16:33 PM (12 years ago)
- svn:sync-xref-src-repo-rev:
- 84891
- Location:
- trunk/include/iprt
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/err.h
r45398 r45454 1588 1588 /** Certificate cannot be authenticated with the given CA certificates. */ 1589 1589 #define VERR_HTTP_CACERT_CANNOT_AUTHENTICATE (-892) 1590 /** The current HTTP request was forcefully aborted */ 1591 #define VERR_HTTP_ABORTED (-893) 1590 1592 /** @} */ 1591 1593 -
trunk/include/iprt/http.h
r45398 r45454 75 75 76 76 /** 77 * Abort a pending HTTP request. A blocking RTHttpGet() call will return with 78 * VERR_HTTP_ABORTED. It may take some time (current cURL implementation needs 79 * up to 1 second) before the request is aborted. 80 * 81 * @returns iprt status code. 82 * 83 * @param hHttp HTTP interface handle. 84 */ 85 RTR3DECL(int) RTHttpAbort(RTHTTP hHttp); 86 87 /** 77 88 * Specify proxy settings. 78 89 *
Note:
See TracChangeset
for help on using the changeset viewer.