# File lib/net/ssh.rb, line 205
    def self.configuration_for(host, use_ssh_config=true)
      files = case use_ssh_config
        when true then Net::SSH::Config.default_files
        when false, nil then return {}
        else Array(use_ssh_config)
        end
      
      Net::SSH::Config.for(host, files)
    end