/**
   * Find out how many addresses we tried to connect to and we're unable to connect to while making
   * connections to get this torrent.
   *
   * @return The number of addresses we couldn't connect to
   */
  public int getNumberOfInvalidAlternateLocations() {

    // Count the number of Endpoint objects the ManagedTorrent placed in its _badPeers list
    return _torrent.getNumBadPeers();
  }