TLS tweaking and freaking

This commit is contained in:
Duke Leto
2021-01-24 19:30:54 -05:00
parent 415636af68
commit ca4fb7b9a0
4 changed files with 20 additions and 14 deletions

View File

@@ -1106,7 +1106,7 @@ static void AcceptConnection(const ListenSocket& hListenSocket) {
ssl = tlsmanager.accept( hSocket, addr, err_code);
if(!ssl)
{
LogPrint("tls", "%s():%d - err_code %x, failure accepting connection from %s\n", __func__, __LINE__, err_code, addr.ToStringIP());
LogPrint("tls", "TLS: %s():%d - err_code %x, failure accepting connection from %s\n", __func__, __LINE__, err_code, addr.ToStringIP());
CloseSocket(hSocket);
return;
}