OLD | NEW |
---|---|
1 /* | 1 /* |
2 * Enumeration of all SSL-specific error codes. | 2 * Enumeration of all SSL-specific error codes. |
3 * | 3 * |
4 * ***** BEGIN LICENSE BLOCK ***** | 4 * ***** BEGIN LICENSE BLOCK ***** |
5 * Version: MPL 1.1/GPL 2.0/LGPL 2.1 | 5 * Version: MPL 1.1/GPL 2.0/LGPL 2.1 |
6 * | 6 * |
7 * The contents of this file are subject to the Mozilla Public License Version | 7 * The contents of this file are subject to the Mozilla Public License Version |
8 * 1.1 (the "License"); you may not use this file except in compliance with | 8 * 1.1 (the "License"); you may not use this file except in compliance with |
9 * the License. You may obtain a copy of the License at | 9 * the License. You may obtain a copy of the License at |
10 * http://www.mozilla.org/MPL/ | 10 * http://www.mozilla.org/MPL/ |
(...skipping 186 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
197 | 197 |
198 SSL_ERROR_DECOMPRESSION_FAILURE = (SSL_ERROR_BASE + 111), | 198 SSL_ERROR_DECOMPRESSION_FAILURE = (SSL_ERROR_BASE + 111), |
199 SSL_ERROR_RENEGOTIATION_NOT_ALLOWED = (SSL_ERROR_BASE + 112), | 199 SSL_ERROR_RENEGOTIATION_NOT_ALLOWED = (SSL_ERROR_BASE + 112), |
200 SSL_ERROR_UNSAFE_NEGOTIATION = (SSL_ERROR_BASE + 113), | 200 SSL_ERROR_UNSAFE_NEGOTIATION = (SSL_ERROR_BASE + 113), |
201 | 201 |
202 SSL_ERROR_RX_UNEXPECTED_UNCOMPRESSED_RECORD = (SSL_ERROR_BASE + 114), | 202 SSL_ERROR_RX_UNEXPECTED_UNCOMPRESSED_RECORD = (SSL_ERROR_BASE + 114), |
203 | 203 |
204 SSL_ERROR_WEAK_SERVER_EPHEMERAL_DH_KEY = (SSL_ERROR_BASE + 115), | 204 SSL_ERROR_WEAK_SERVER_EPHEMERAL_DH_KEY = (SSL_ERROR_BASE + 115), |
205 | 205 |
206 SSL_ERROR_RX_UNEXPECTED_CERT_STATUS = (SSL_ERROR_BASE + 116), | 206 SSL_ERROR_RX_UNEXPECTED_CERT_STATUS = (SSL_ERROR_BASE + 116), |
207 // SSL_ERROR_NEXT_PROTOCOL_DATA_INVALID results if the peer sends invalid next | |
208 // protocol information during a handshake. | |
wtc
2011/10/18 00:58:08
Use a C-style comment /* */.
This comment should
agl
2011/10/18 16:44:43
Have removed the comment here. We don't that that
| |
209 SSL_ERROR_NEXT_PROTOCOL_DATA_INVALID = (SSL_ERROR_BASE + 117), | |
207 | 210 |
208 SSL_ERROR_END_OF_LIST /* let the c compiler determine the value of this. */ | 211 SSL_ERROR_END_OF_LIST /* let the c compiler determine the value of this. */ |
209 } SSLErrorCodes; | 212 } SSLErrorCodes; |
210 #endif /* NO_SECURITY_ERROR_ENUM */ | 213 #endif /* NO_SECURITY_ERROR_ENUM */ |
211 | 214 |
212 #endif /* __SSL_ERR_H_ */ | 215 #endif /* __SSL_ERR_H_ */ |
OLD | NEW |