Class: SSLGate::SSLBackend

Inherits:
Thin::Backends::TcpServer
  • Object
show all
Defined in:
lib/ssl_gate/base_ssl_gate.rb

Instance Method Summary collapse

Constructor Details

#initialize(host, port, options) ⇒ SSLBackend

Returns a new instance of SSLBackend.



12
13
14
15
16
# File 'lib/ssl_gate/base_ssl_gate.rb', line 12

def initialize(host, port, options)
  super(host, port)
  @ssl = true
  @ssl_options = options
end