# File lib/mongrel.rb, line 498
498:     def initialize(host, port, num_processors=(2**30-1), timeout=0)
499:       @socket = TCPServer.new(host, port) 
500:       @classifier = URIClassifier.new
501:       @host = host
502:       @port = port
503:       @workers = ThreadGroup.new
504:       @timeout = timeout
505:       @num_processors = num_processors
506:       @death_time = 60
507:     end