# File lib/thin_http.rb, line 86
  def initialize host = 'localhost', port = 2000, http_headers = {}
    @host = host
    @port = port
    @path = ''
    self.cookies = CookieCollection.new
    self.request_headers = http_headers
    self.response_headers = Hash.new
  end