/**
   * Find out how many more addresses we have of remote computers that have this torrent.
   *
   * @return The number of addressess we could connect to
   */
  public int getPossibleHostCount() {

    // Get the number of addresses in the ManagedTorrent object's _peers list
    return _torrent.getNumPeers();
  }