Add SSL_CONNECTION_VERSION_TLS1_3 to cef_ssl_version_t (fixes issue #2669)
This commit is contained in:
parent
fa5268fa2d
commit
7e742f6e1f
|
@ -2817,7 +2817,7 @@ typedef enum {
|
|||
SSL_CONNECTION_VERSION_TLS1 = 3,
|
||||
SSL_CONNECTION_VERSION_TLS1_1 = 4,
|
||||
SSL_CONNECTION_VERSION_TLS1_2 = 5,
|
||||
// Reserve 6 for TLS 1.3.
|
||||
SSL_CONNECTION_VERSION_TLS1_3 = 6,
|
||||
SSL_CONNECTION_VERSION_QUIC = 7,
|
||||
} cef_ssl_version_t;
|
||||
|
||||
|
|
|
@ -128,6 +128,7 @@ std::string GetSSLVersionString(cef_ssl_version_t version) {
|
|||
VALUE(version, SSL_CONNECTION_VERSION_TLS1);
|
||||
VALUE(version, SSL_CONNECTION_VERSION_TLS1_1);
|
||||
VALUE(version, SSL_CONNECTION_VERSION_TLS1_2);
|
||||
VALUE(version, SSL_CONNECTION_VERSION_TLS1_3);
|
||||
VALUE(version, SSL_CONNECTION_VERSION_QUIC);
|
||||
return std::string();
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue