Changeset 57516 in vbox
- Timestamp:
- Aug 24, 2015 9:13:13 PM (10 years ago)
- svn:sync-xref-src-repo-rev:
- 102315
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/err.h
r57004 r57516 1692 1692 /** Request was redirected. */ 1693 1693 #define VERR_HTTP_REDIRECTED (-894) 1694 /** Proxy couldn't be resolved. */ 1695 #define VERR_HTTP_PROXY_NOT_FOUND (-895) 1694 1696 /** @} */ 1695 1697 -
trunk/src/VBox/Runtime/common/misc/http.cpp
r57358 r57516 438 438 rc = VERR_HTTP_ABORTED; 439 439 break; 440 case CURLE_COULDNT_RESOLVE_PROXY: 441 rc = VERR_HTTP_PROXY_NOT_FOUND; 442 break; 440 443 default: 441 444 break;
Note:
See TracChangeset
for help on using the changeset viewer.