From e49ce30bcdda53ba07de8261e9ac41493faab845 Mon Sep 17 00:00:00 2001 From: dartraiden Date: Fri, 25 Jun 2021 09:21:44 +0300 Subject: Not only SSL is supported, but also TLS --- src/mir_app/src/netlib_ssl.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src') diff --git a/src/mir_app/src/netlib_ssl.cpp b/src/mir_app/src/netlib_ssl.cpp index 9946658bde..1f8ffe5f2c 100644 --- a/src/mir_app/src/netlib_ssl.cpp +++ b/src/mir_app/src/netlib_ssl.cpp @@ -360,13 +360,13 @@ MIR_APP_DLL(int) Netlib_StartSsl(HNETLIBCONN hConnection, const char *szHost) szHost = nlc->nloc.szHost; szHost = NEWSTR_ALLOCA(szHost); - Netlib_Logf(nlu, "(%d %s) Starting SSL negotiation", int(nlc->s), szHost); + Netlib_Logf(nlu, "(%d %s) Starting SSL/TLS negotiation", int(nlc->s), szHost); nlc->hSsl = Netlib_SslConnect(nlc->s, szHost, nlu->settings.validateSSL); if (nlc->hSsl == nullptr) - Netlib_Logf(nlu, "(%d %s) Failure to negotiate SSL connection", int(nlc->s), szHost); + Netlib_Logf(nlu, "(%d %s) Failure to negotiate SSL/TLS connection", int(nlc->s), szHost); else - Netlib_Logf(nlu, "(%d %s) SSL negotiation successful", int(nlc->s), szHost); + Netlib_Logf(nlu, "(%d %s) SSL/TLS negotiation successful", int(nlc->s), szHost); return nlc->hSsl != nullptr; } -- cgit v1.2.3