Enable support for SNI on client side
This commit is contained in:
parent
b769d84d0d
commit
c0226d686c
@ -807,6 +807,10 @@ int tls_connect(rdpTls* tls, BIO* underlying)
|
||||
if (!tls_prepare(tls, underlying, SSLv23_client_method(), options, TRUE))
|
||||
return FALSE;
|
||||
|
||||
#ifndef OPENSSL_NO_TLSEXT
|
||||
SSL_set_tlsext_host_name(tls->ssl, tls->hostname);
|
||||
#endif
|
||||
|
||||
return tls_do_handshake(tls, TRUE);
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user