diff options
author | Hannes Rantzsch <[email protected]> | 2022-03-01 15:40:49 +0100 |
---|---|---|
committer | René Meusel <[email protected]> | 2022-04-04 17:50:41 +0200 |
commit | fd9d1c3d8891460df6da125258f8e7d7f35d8d6b (patch) | |
tree | b2f81e96eff91bfe9930f5c652efddf04982d0cc /src/lib/tls/tls_alert.cpp | |
parent | b0409695bc9362b159399ea40cafbe18902da812 (diff) |
prepare TLS 1.2 for addition of TLS 1.3
Co-authored-by: René Meusel <[email protected]>
Co-authored-by: Marek Kocik <[email protected]>
Co-authored-by: Grzegorz Dulewicz <[email protected]>
Co-authored-by: Pawel Bazelewski <[email protected]>
Co-authored-by: Pawel Jarosz <[email protected]>
Diffstat (limited to 'src/lib/tls/tls_alert.cpp')
-rw-r--r-- | src/lib/tls/tls_alert.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/lib/tls/tls_alert.cpp b/src/lib/tls/tls_alert.cpp index a947d7d5e..6c53cc4f4 100644 --- a/src/lib/tls/tls_alert.cpp +++ b/src/lib/tls/tls_alert.cpp @@ -88,7 +88,8 @@ std::string Alert::type_string() const return "user_canceled"; case NO_RENEGOTIATION: return "no_renegotiation"; - + case MISSING_EXTENSION: + return "missing_extension"; case UNSUPPORTED_EXTENSION: return "unsupported_extension"; case CERTIFICATE_UNOBTAINABLE: |