From 853756a73c41fe3bec1b0bf218b157e6f8d0e1e8 Mon Sep 17 00:00:00 2001 From: thivyaashok <34463424+thivyaashok@users.noreply.github.com> Date: Fri, 20 Apr 2018 10:23:57 -0700 Subject: [PATCH] Added a TLS alert message 115 (#1391) Added a new TLS alert message `unknown_psk_identity` (115) from RFC 4279, section 2. --- wolfssl/ssl.h | 1 + 1 file changed, 1 insertion(+) diff --git a/wolfssl/ssl.h b/wolfssl/ssl.h index e1615af7e..3609c8201 100644 --- a/wolfssl/ssl.h +++ b/wolfssl/ssl.h @@ -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 };