----------------------------
- Fixed searching for destinations in web ui (Issue #954)
+- Fixed TLS negotiation using OpenSSL with servers that require the TLS SNI
+ extension.
+
Changes in CUPS v2.4.8 (2024-04-26)
-----------------------------------
if (http->mode == _HTTP_MODE_CLIENT)
{
// Negotiate as a client...
+ DEBUG_printf(("4_httpTLSStart: Setting server name TLS extension to '%s'...", http->hostname));
+ SSL_set_tlsext_host_name(http->tls, http->hostname);
+
DEBUG_puts("4_httpTLSStart: Calling SSL_connect...");
if (SSL_connect(http->tls) < 1)
{