class DRb::DRbSSLSocket::SSLConfig

def accept(tcp)

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