Created by: reedom
Currently I am working on conformance tests of a FIX service. It offers TLS session without CERT info. So I need to tweak the library to do.
FIX servicer may offer to use TLS connection without any CERT info, basically for conformance testing.
With this switch, the session will use Go's tls.Config
tls.Config{InsecureSkipVerify: true}
To prevent accidental behaviour in production service, the switch
only activate if SocketPrivateKeyFile
and SocketCertificateFile
is omitted.