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/net/parameters.rb, line 91
def initialize
  super
  self[:verify_peer] = false
end