I've written such piece of code:
Qt Code:
  1. sock.connectToHostEncrypted(host,port);
  2. if(!sock.waitForEncrypted(TIMEOUT))
  3. {
  4. report(sock.errorString());
  5. return false;
  6. }
To copy to clipboard, switch view to plain text mode 

And when this part of the program is executed, I'm receiving such debug messages;
QSslSocket: cannot call unresolved function SSLv3_client_method
QSslSocket: cannot call unresolved function SSL_CTX_new
QSslSocket: cannot call unresolved function SSL_library_init
QSslSocket: cannot call unresolved function ERR_get_error
QSslSocket: cannot call unresolved function ERR_error_string
What's wrong? Is the program missing any DDL files? Does it have something to do with OpenSSL?