# File lib/net/http/connection_pool.rb, line 110
  def connection_for host, options = {}, &block
    connection = Connection.new(self, host, options)
    if block_given?
      yield(connection)
    else
      connection
    end
  end