Changeset 45398 in vbox for trunk/include/iprt/err.h
- Timestamp:
- Apr 8, 2013 9:32:00 AM (12 years ago)
- svn:sync-xref-src-repo-rev:
- 84824
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/include/iprt/err.h
r45389 r45398 1572 1572 /** @name HTTP status codes 1573 1573 * @{ */ 1574 /** HTTP initialization failed. */ 1575 #define VERR_HTTP_INIT_FAILED (-885) 1574 1576 /** The server has not found anything matching the URI given. */ 1575 #define VERR_HTTP_NOT_FOUND (-88 5)1577 #define VERR_HTTP_NOT_FOUND (-886) 1576 1578 /** The request is for something forbidden. Authorization will not help. */ 1577 #define VERR_HTTP_ACCESS_DENIED (-88 6)1579 #define VERR_HTTP_ACCESS_DENIED (-887) 1578 1580 /** The server did not understand the request due to bad syntax. */ 1579 #define VERR_HTTP_BAD_REQUEST (-887) 1580 /** Couldn't connect to the server (proxy?) */ 1581 #define VERR_HTTP_COULDNT_CONNECT (-888) 1581 #define VERR_HTTP_BAD_REQUEST (-888) 1582 /** Couldn't connect to the server (proxy?). */ 1583 #define VERR_HTTP_COULDNT_CONNECT (-889) 1584 /** SSL connection error. */ 1585 #define VERR_HTTP_SSL_CONNECT_ERROR (-890) 1586 /** CAcert is missing or has the wrong format. */ 1587 #define VERR_HTTP_CACERT_WRONG_FORMAT (-891) 1588 /** Certificate cannot be authenticated with the given CA certificates. */ 1589 #define VERR_HTTP_CACERT_CANNOT_AUTHENTICATE (-892) 1582 1590 /** @} */ 1583 1591
Note:
See TracChangeset
for help on using the changeset viewer.