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