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, line 101
def initialize
  super
  self[:verify_peer] = false
end