SSL no OPENSSL_Applink

There is an openssl server and a Qt client using QSslSocket. When a client connected to the server server does not show OPENSSL_Applink and shuts down. But OpenSSL works correctly with the client server. What could be the reason?

+5
source share
1 answer
#include <openssl/applink.c>

Inclusion applink.cwill solve the problem. Please check OpenSSL Frequently Asked Questions

We basically get this error only if we use any file processing APIs, such as d2i_X509. I got a failure applink.cwhen using this API in Windows VC8.0. Later I made fopen separately and named the API d2i_X509_fp.

+6
source

All Articles