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