# File lib/httpclient/cookie.rb, line 125
    def match?(url)
      domainname = url.host
      if (!domainname ||
          !domain_match(domainname, @domain) ||
          (@path && !head_match?(@path, url.path)) ||
          (@secure && (url.scheme != 'https')) )
        return false
      else
        return true
      end
    end