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 187 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
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_KEY = (SSL_ERROR_BASE + 115), | 204 SSL_ERROR_WEAK_SERVER_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 | 207 |
| 208 SSL_ERROR_UNKNOWN_PSK_IDENTITY_ALERT = (SSL_ERROR_BASE + 116), |
| 209 |
208 SSL_ERROR_END_OF_LIST /* let the c compiler determine the value of this. */ | 210 SSL_ERROR_END_OF_LIST /* let the c compiler determine the value of this. */ |
209 } SSLErrorCodes; | 211 } SSLErrorCodes; |
210 #endif /* NO_SECURITY_ERROR_ENUM */ | 212 #endif /* NO_SECURITY_ERROR_ENUM */ |
211 | 213 |
212 #endif /* __SSL_ERR_H_ */ | 214 #endif /* __SSL_ERR_H_ */ |
OLD | NEW |