I noticed this conclusion in my two Qt applications that use QNetworkRequest to download some data from outside through QNeworkRequest:
QSslSocket: cannot resolve TLSv1_1_client_method QSslSocket: cannot resolve TLSv1_2_client_method QSslSocket: cannot resolve TLSv1_1_server_method QSslSocket: cannot resolve TLSv1_2_server_method QSslSocket: cannot resolve SSL_select_next_proto QSslSocket: cannot resolve SSL_CTX_set_next_proto_select_cb QSslSocket: cannot resolve SSL_get0_next_proto_negotiated
One example of a query that raises these warnings is
QNetworkReply reply = m_nam->get(QNetworkRequest(QUrl("http://api.openweathermap.org/data/2.5/forecast?id=2835297&mode=xml")));
I am sure that in any of the requests there is no TLS / SSL, all this is simple HTTP. Messages always appear after the first request is sent, regardless of the URL. I have no intention of circumventing SSL at all, SSL is not mentioned in the code , which means that I cannot ignore warnings programmatically.
My setup is Windows 7 64 bit, MSVC2013 and MinGW, Qt 5.3.2. Messages appear regardless of the compiler used. No OpenSSL or other SSL development libraries installed.
And the question is: How do I get rid of these warnings?
ssl qt qsslsocket
Pavel
source share