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.

# File lib/t2-server/net/parameters.rb, line 95
def initialize
  super
  self[:verify_peer] = false
end