# File lib/rfuzz/client.rb, line 230
230:     def initialize(host, port, options = {})
231:       @options = options
232:       @host = host
233:       @port = port
234:       @cookies = options[:cookies] || {}
235:       @allowed_methods = options[:allowed_methods] || [:put, :get, :post, :delete, :head]
236:       @notifier = options[:notifier]
237:       @redirect = options[:redirect] || false
238:       @parser = HttpClientParser.new
239:     end