Interface TorrentTrackers

interface TorrentTrackers {
    msg: string;
    num_downloaded: number;
    num_leeches: number;
    num_peers: number;
    num_seeds: number;
    status: TorrentTrackerStatus;
    tier: number;
    url: string;
}

Properties

msg: string

Tracker message (there is no way of knowing what this message is - it's up to tracker admins)

num_downloaded: number

Number of completed downlods for current torrent, as reported by the tracker

num_leeches: number

Number of leeches for current torrent, as reported by the tracker

num_peers: number

Number of peers for current torrent, as reported by the tracker

num_seeds: number

Number of seeds for current torrent, asreported by the tracker

Tracker status. See the table below for possible values

tier: number

Tracker priority tier. Lower tier trackers are tried before higher tiers

url: string

Tracker url