Fix TLS, again... #38

Merged
jordan merged 4 commits from lda/Cytoplasm:fix-tls into master 2024-06-24 19:18:44 +00:00
Showing only changes of commit d7faff734c - Show all commits

View file

@ -71,14 +71,6 @@ TlsInitClient(int fd, const char *serverName)
OpenSSLCookie *cookie;
char errorStr[256];
/*
* TODO: Seems odd that this isn't needed to make the
* connection... we should figure out how to verify the
* certificate matches the server we think we're
* connecting to.
*/
(void) serverName;
cookie = Malloc(sizeof(OpenSSLCookie));
if (!cookie)
{
@ -96,6 +88,7 @@ TlsInitClient(int fd, const char *serverName)
}
cookie->ssl = SSL_new(cookie->ctx);
SSL_set_tlsext_host_name(cookie->ssl, serverName);
if (!cookie->ssl)
{
goto error;