class T2Server::SSL3ConnectionParameters
Connection parameters that specify the use of SSL version 3.
Public Class Methods
new()
click to toggle source
Create connection parameters that specify the use of SSL version 3.
Calls superclass method
T2Server::DefaultConnectionParameters::new
# File lib/t2-server/net/parameters.rb 110 def initialize 111 super 112 self[:ssl_version] = :SSLv3 113 end