AnnounceResponse
data class AnnounceResponse(val interval: Int, val leechers: Int, val seeders: Int, val peers: List<PeerEndpoint>, val minInterval: Int = DEFAULT_MIN_INTERVAL, val trackerId: String = "")
A tracker's response to an announce. This is the announce-relevant subset of libtorrent's tracker_response.
Properties
Link copied to clipboard
the minimum seconds the client must wait before re-announcing, even when re-announcing early on a peer-shortage or a manual trigger (libtorrent resp.min_interval, BEP-3 min interval). Defaults to DEFAULT_MIN_INTERVAL (30s) when the tracker omits it, matching libtorrent.
Link copied to clipboard
the peer endpoints the tracker returned.