There is a piece of code at the beginning of mget:
// initialize OpenSSL if needed
{$ifdef USE_OPENSSL}
OpenSslInitialize;
{$endif USE_OPENSSL}
There is a missing sentence NewNetTls := @NewOpenSslNetTls;, otherwise OpenSSL will not be actually loaded and executed. I think the correct version should be like this:
There is a piece of code at the beginning of mget:
There is a missing sentence
NewNetTls := @NewOpenSslNetTls;
, otherwise OpenSSL will not be actually loaded and executed. I think the correct version should be like this: