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