Changeset 58738 in vbox
- Timestamp:
- Nov 18, 2015 12:34:39 PM (9 years ago)
- svn:sync-xref-src-repo-rev:
- 104175
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/err.h
r58068 r58738 1708 1708 /** Proxy couldn't be resolved. */ 1709 1709 #define VERR_HTTP_PROXY_NOT_FOUND (-895) 1710 /** The remote host couldn't be resolved. */ 1711 #define VERR_HTTP_HOST_NOT_FOUND (-896) 1710 1712 /** Unexpected cURL error configure the proxy. */ 1711 1713 #define VERR_HTTP_CURL_PROXY_CONFIG (-897) -
trunk/src/VBox/Runtime/generic/http-curl.cpp
r58419 r58738 2078 2078 case CURLE_URL_MALFORMAT: 2079 2079 case CURLE_COULDNT_RESOLVE_HOST: 2080 rc = VERR_HTTP_ NOT_FOUND;2080 rc = VERR_HTTP_HOST_NOT_FOUND; 2081 2081 break; 2082 2082 case CURLE_COULDNT_CONNECT:
Note:
See TracChangeset
for help on using the changeset viewer.