Changeset 104308 in vbox
- Timestamp:
- Apr 12, 2024 10:04:21 AM (13 months ago)
- svn:sync-xref-src-repo-rev:
- 162785
- Location:
- trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/err.h
r100772 r104308 1204 1204 /** Unexpected cURL error configure the proxy. */ 1205 1205 #define VERR_HTTP_CURL_PROXY_CONFIG (-897) 1206 /** The server does not support the requested function. */ 1207 #define VERR_HTTP_NOT_SUPPORTED (-898) 1206 1208 /** Generic CURL error. */ 1207 1209 #define VERR_HTTP_CURL_ERROR (-899) -
trunk/src/VBox/Runtime/generic/http-curl.cpp
r102916 r104308 2834 2834 if (!puHttpStatus) 2835 2835 rc = VERR_HTTP_NOT_FOUND; 2836 break; 2837 case 501: 2838 /* Requested function not supported */ 2839 if (!puHttpStatus) 2840 rc = VERR_HTTP_NOT_SUPPORTED; 2836 2841 break; 2837 2842 }
Note:
See TracChangeset
for help on using the changeset viewer.