# File lib/pry-remote-em/client.rb, line 77
    def receive_server_list(list)
      if list.empty?
        log.info("\033[33m[pry-remote-em] no servers are registered with the broker\033[0m")
        Process.exit
      end
      choice, proxy  = choose_server(list)
      return unless choice
      uri, name      = choice[0], choice[1]
      if proxy
        @opts[:tls]  = uri.scheme == 'pryems'
        @negotiated  = false
        @tls_started = false
        return send_proxy_connection(uri)
      end
      @reconnect_to = uri
      close_connection
    end