# File wfo/cookie.rb, line 85
  def match?(uri)
    return false if @domain_pat !~ uri.host
    return false if @path_pat !~ uri.path
    return false if @pairs.find {|k, v| /\Asecure\z/ =~ k } && uri.scheme != 'https'
    true
  end