# File lib/rfuzz/client.rb, line 210
210:     def initialize(host, port, options = {})
211:       @options = options
212:       @host = host
213:       @port = port
214:       @cookies = options[:cookies] || {}
215:       @allowed_methods = options[:allowed_methods] || [:put, :get, :post, :delete, :head]
216:       @notifier = options[:notifier]
217:       @redirect = options[:redirect] || false
218:     end