]> Sergey Matveev's repositories - btrtrc.git/blob - torrent_stats.go
f155a0d83ea369e2fa6539b9fe157ace55b18039
[btrtrc.git] / torrent_stats.go
1 package torrent
2
3 type TorrentStats struct {
4         ConnStats // Aggregates stats over all connections past and present.
5
6         // Ordered by expected descending quantities (if all is well).
7         TotalPeers       int
8         PendingPeers     int
9         ActivePeers      int
10         ConnectedSeeders int
11         HalfOpenPeers    int
12 }