# File lib/mongrel.rb, line 529
529:     def initialize(host, port, num_processors=(2**30-1), timeout=0)
530:       @socket = TCPServer.new(host, port) 
531:       @classifier = URIClassifier.new
532:       @host = host
533:       @port = port
534:       @workers = ThreadGroup.new
535:       @timeout = timeout
536:       @num_processors = num_processors
537:       @death_time = 60
538:     end