class Thin::Backends::NTLMTcpServer

Public Class Methods

new(host, port, options) click to toggle source
Calls superclass method
# File lib/thin/ntlm/backends/tcp_server.rb, line 4
def initialize(host, port, options)
  super(host, port)
end

Public Instance Methods

connect() click to toggle source
# File lib/thin/ntlm/backends/tcp_server.rb, line 8
def connect
  @signature = EventMachine.start_server(@host, @port, NTLMConnection, &method(:initialize_connection))
end