Added a TLS alert message 115 (#1391)

Added a new TLS alert message `unknown_psk_identity` (115) from RFC 4279,  section 2.
This commit is contained in:
thivyaashok 2018-04-20 10:23:57 -07:00 committed by David Garske
parent 9e4bb3fee1
commit 853756a73c

View File

@ -385,6 +385,7 @@ enum AlertDescription {
unsupported_extension = 110, /**< RFC 5246, section 7.2.2 */
unrecognized_name = 112, /**< RFC 6066, section 3 */
bad_certificate_status_response = 113, /**< RFC 6066, section 8 */
unknown_psk_identity = 115, /**< RFC 4279, section 2 */
no_application_protocol = 120
};