Add TODO for S1-1766

This commit is contained in:
Nick Bolton
2024-07-29 23:38:31 +01:00
parent a99d1ca87d
commit 63bc481b06

View File

@ -428,6 +428,10 @@ int SecureSocket::secureConnect(int socket) {
SSL_set_fd(m_ssl->m_ssl, socket);
LOG((CLOG_DEBUG2 "connecting secure socket"));
// TODO: S1-1766, enable hostname verification.
// the cert will need to be installed in the trusted store on the client.
// we'll probably need to find a way of securely transferring the cert.
int r = SSL_connect(m_ssl->m_ssl);
static int retry;