ScrapeFailedAlert
data class ScrapeFailedAlert(val torrentName: String?, val trackerUrl: String, val localEndpoint: String, val errorMessage: String) : TrackerAlert
Generated when a scrape request fails (tracker timeout, refused connection or an HTTP error response). Ported from libtorrent::scrape_failed_alert (alert_type 14). Non-discardable.
libtorrent renders <tracker-prefix> scrape failed: <errorMessage>.
Properties
Link copied to clipboard
The bitmask of AlertCategory flags this alert belongs to. Mirrors alert::category(), which returns the concrete alert's static_category.
Link copied to clipboard
the description of why the scrape failed (the tracker's failure message when present, otherwise the system error text).
Link copied to clipboard
the local listen interface endpoint, already formatted.
Link copied to clipboard
the torrent's name, or null when the handle would be invalid (rendered as " - ", matching libtorrent).
Link copied to clipboard
the tracker URL being announced to.