20 #define SSL_ALERT_CODE_MAP(XX) \ 22 XX(UNEXPECTED_MESSAGE, 10) \ 23 XX(BAD_RECORD_MAC, 20) \ 24 XX(RECORD_OVERFLOW, 22) \ 25 XX(DECOMPRESSION_FAILURE, 30) \ 26 XX(HANDSHAKE_FAILURE, 40) \ 27 XX(BAD_CERTIFICATE, 42) \ 28 XX(UNSUPPORTED_CERTIFICATE, 43) \ 29 XX(CERTIFICATE_REVOKED, 44) \ 30 XX(CERTIFICATE_EXPIRED, 45) \ 31 XX(CERTIFICATE_UNKNOWN, 46) \ 32 XX(ILLEGAL_PARAMETER, 47) \ 34 XX(ACCESS_DENIED, 49) \ 35 XX(DECODE_ERROR, 50) \ 36 XX(DECRYPT_ERROR, 51) \ 37 XX(INVALID_VERSION, 70) \ 38 XX(INSUFFICIENT_SECURITY, 71) \ 39 XX(INTERNAL_ERROR, 80) \ 40 XX(USER_CANCELLED, 90) \ 41 XX(NO_RENEGOTIATION, 100) \ 42 XX(UNSUPPORTED_EXTENSION, 110) \ 43 XX(NO_APPLICATION_PROTOCOL, 120) 50 #define XX(tag, code) tag = code,
The String class.
Definition: WString.h:136
#define SSL_ALERT_CODE_MAP(XX)
Map of standard Alert codes.
Definition: Alert.h:20
String getAlertString(Alert alert)
Alert
Alert codes defined by the standard.
Definition: Alert.h:48