| Index: net/third_party/nss/ssl/sslerr.h
|
| ===================================================================
|
| --- net/third_party/nss/ssl/sslerr.h (revision 124359)
|
| +++ net/third_party/nss/ssl/sslerr.h (working copy)
|
| @@ -36,7 +36,7 @@
|
| * the terms of any one of the MPL, the GPL or the LGPL.
|
| *
|
| * ***** END LICENSE BLOCK ***** */
|
| -/* $Id: sslerr.h,v 1.11.2.2 2010/09/01 19:47:11 wtc%google.com Exp $ */
|
| +/* $Id: sslerr.h,v 1.19 2012/02/11 12:55:58 kaie%kuix.de Exp $ */
|
| #ifndef __SSL_ERR_H_
|
| #define __SSL_ERR_H_
|
|
|
| @@ -57,11 +57,13 @@
|
| */
|
| SSL_ERROR_NO_CERTIFICATE /*_ALERT */ = (SSL_ERROR_BASE + 3),
|
| SSL_ERROR_BAD_CERTIFICATE = (SSL_ERROR_BASE + 4),
|
| +SSL_ERROR_UNUSED_5 = (SSL_ERROR_BASE + 5),
|
| /* error 5 is obsolete */
|
| SSL_ERROR_BAD_CLIENT = (SSL_ERROR_BASE + 6),
|
| SSL_ERROR_BAD_SERVER = (SSL_ERROR_BASE + 7),
|
| SSL_ERROR_UNSUPPORTED_CERTIFICATE_TYPE = (SSL_ERROR_BASE + 8),
|
| SSL_ERROR_UNSUPPORTED_VERSION = (SSL_ERROR_BASE + 9),
|
| +SSL_ERROR_UNUSED_10 = (SSL_ERROR_BASE + 10),
|
| /* error 10 is obsolete */
|
| SSL_ERROR_WRONG_CERTIFICATE = (SSL_ERROR_BASE + 11),
|
| SSL_ERROR_BAD_CERT_DOMAIN = (SSL_ERROR_BASE + 12),
|
| @@ -203,9 +205,14 @@
|
|
|
| SSL_ERROR_WEAK_SERVER_EPHEMERAL_DH_KEY = (SSL_ERROR_BASE + 115),
|
|
|
| -SSL_ERROR_RX_UNEXPECTED_CERT_STATUS = (SSL_ERROR_BASE + 116),
|
| -SSL_ERROR_NEXT_PROTOCOL_DATA_INVALID = (SSL_ERROR_BASE + 117),
|
| +SSL_ERROR_NEXT_PROTOCOL_DATA_INVALID = (SSL_ERROR_BASE + 116),
|
|
|
| +SSL_ERROR_FEATURE_NOT_SUPPORTED_FOR_SSL2 = (SSL_ERROR_BASE + 117),
|
| +SSL_ERROR_FEATURE_NOT_SUPPORTED_FOR_SERVERS = (SSL_ERROR_BASE + 118),
|
| +SSL_ERROR_FEATURE_NOT_SUPPORTED_FOR_CLIENTS = (SSL_ERROR_BASE + 119),
|
| +
|
| +SSL_ERROR_RX_UNEXPECTED_CERT_STATUS = (SSL_ERROR_BASE + 120),
|
| +
|
| SSL_ERROR_END_OF_LIST /* let the c compiler determine the value of this. */
|
| } SSLErrorCodes;
|
| #endif /* NO_SECURITY_ERROR_ENUM */
|
|
|