class T2Server::InsecureSSLConnectionParameters

Connection parameters that specifically turn off peer verification when using SSL.

Public Class Methods

new() click to toggle source

Create connection parameters that are insecure by default and do not verify the server that is connected to.

Calls superclass method T2Server::ConnectionParameters::new
    # File lib/t2-server/net/parameters.rb
101 def initialize
102   super
103   self[:verify_peer] = false
104 end