Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 /* | 1 /* |
| 2 * Enumeration of all SSL-specific error codes. | 2 * Enumeration of all SSL-specific error codes. |
| 3 * | 3 * |
| 4 * This Source Code Form is subject to the terms of the Mozilla Public | 4 * This Source Code Form is subject to the terms of the Mozilla Public |
| 5 * License, v. 2.0. If a copy of the MPL was not distributed with this | 5 * License, v. 2.0. If a copy of the MPL was not distributed with this |
| 6 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ | 6 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */ |
| 7 /* $Id$ */ | 7 /* $Id$ */ |
| 8 #ifndef __SSL_ERR_H_ | 8 #ifndef __SSL_ERR_H_ |
| 9 #define __SSL_ERR_H_ | 9 #define __SSL_ERR_H_ |
| 10 | 10 |
| (...skipping 170 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 181 SSL_ERROR_FEATURE_NOT_SUPPORTED_FOR_CLIENTS = (SSL_ERROR_BASE + 119), | 181 SSL_ERROR_FEATURE_NOT_SUPPORTED_FOR_CLIENTS = (SSL_ERROR_BASE + 119), |
| 182 | 182 |
| 183 SSL_ERROR_INVALID_VERSION_RANGE = (SSL_ERROR_BASE + 120), | 183 SSL_ERROR_INVALID_VERSION_RANGE = (SSL_ERROR_BASE + 120), |
| 184 SSL_ERROR_CIPHER_DISALLOWED_FOR_VERSION = (SSL_ERROR_BASE + 121), | 184 SSL_ERROR_CIPHER_DISALLOWED_FOR_VERSION = (SSL_ERROR_BASE + 121), |
| 185 | 185 |
| 186 SSL_ERROR_RX_MALFORMED_HELLO_VERIFY_REQUEST = (SSL_ERROR_BASE + 122), | 186 SSL_ERROR_RX_MALFORMED_HELLO_VERIFY_REQUEST = (SSL_ERROR_BASE + 122), |
| 187 SSL_ERROR_RX_UNEXPECTED_HELLO_VERIFY_REQUEST = (SSL_ERROR_BASE + 123), | 187 SSL_ERROR_RX_UNEXPECTED_HELLO_VERIFY_REQUEST = (SSL_ERROR_BASE + 123), |
| 188 | 188 |
| 189 SSL_ERROR_FEATURE_NOT_SUPPORTED_FOR_VERSION = (SSL_ERROR_BASE + 124), | 189 SSL_ERROR_FEATURE_NOT_SUPPORTED_FOR_VERSION = (SSL_ERROR_BASE + 124), |
| 190 | 190 |
| 191 SSL_ERROR_RX_UNEXPECTED_CERT_STATUS = (SSL_ERROR_BASE + 125), | |
|
wtc
2013/04/23 00:58:05
There is another copy of this file (sslerr.h) in
s
| |
| 192 | |
| 191 SSL_ERROR_END_OF_LIST /* let the c compiler determine the value of this. */ | 193 SSL_ERROR_END_OF_LIST /* let the c compiler determine the value of this. */ |
| 192 } SSLErrorCodes; | 194 } SSLErrorCodes; |
| 193 #endif /* NO_SECURITY_ERROR_ENUM */ | 195 #endif /* NO_SECURITY_ERROR_ENUM */ |
| 194 | 196 |
| 195 #endif /* __SSL_ERR_H_ */ | 197 #endif /* __SSL_ERR_H_ */ |
| OLD | NEW |