/**
   * Find out how many computers we're connected to in order to get this torrent.
   *
   * @return The number of connections we have for this torrent
   */
  public int getNumberOfAlternateLocations() {

    // Count our connections
    return _torrent.getNumAltLocs();
  }