# File lib/termtter/httppool.rb, line 12
    def self.start(host, port = 80, ssl = false)
      count = config.retry || 3
      begin
        yield(connection(host, port, ssl))
      rescue EOFError
        finish(host, port)
        if count > 0
          count -= 1
          retry
        end
        raise
      end
    end