# File lib/mongrel.rb, line 559 559: def initialize(host, port, num_processors=(2**30-1), timeout=0) 560: @socket = TCPServer.new(host, port) 561: @classifier = URIClassifier.new 562: @host = host 563: @port = port 564: @workers = ThreadGroup.new 565: @timeout = timeout 566: @num_processors = num_processors 567: @death_time = 60 568: end