class T2Server::InsecureSSLConnectionParameters

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

Public Class Methods

new() click to toggle source
# File lib/t2-server/connection-parameters.rb, line 92
def initialize
  super
  self[:verify_peer] = false
end