class DRb::DRbSSLSocket::SSLConfig

def connect(tcp)

configuration
Connect to IO +tcp+, with context of the current certificate
def connect(tcp)
  ssl = ::OpenSSL::SSL::SSLSocket.new(tcp, @ssl_ctx)
  ssl.sync = true
  ssl.connect
  ssl
end