I have a problem when using remoject (SynapseSuperTCPChannel). When I add the unit in my project (ssl_openssl) cannot connect to the server. If I remove the unit is normally connects.
Hello,
This plugin is capable to create Ad-Hoc certificates. When you start SSL/TLS
server without explicitly assigned key and certificate, then this plugin create
Ad-Hoc key and certificate for each incomming connection by self. It slowdown
accepting of new connections!
To disable it you can try to use the following construction:
var OldSSLClass:TSSLClass;
begin
OldSSLClass := SSLImplementation;
SSLImplementation := TSSLNone;
//…
SSLImplementation := OldSSLClass;
end;