btpeer 0.10.0

Simple CLI tool and library to get peers from TCP/HTTP and UDP BitTorrent trackers
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#[derive(Default)]
pub struct Announce {
    pub interval: u32,
    pub leechers: u32,
    pub seeders: u32,
    pub peers: crate::peer::Buffer,
}

#[derive(Default)]
pub struct Scrape {
    pub leechers: u32,
    pub peers: u32,
    pub seeders: u32,
}