2
0
mirror of synced 2025-02-24 14:48:27 +00:00
torrent/torrent_stats.go

13 lines
291 B
Go
Raw Normal View History

2016-07-05 15:52:33 +10:00
package torrent
type TorrentStats struct {
ConnStats // Aggregates stats over all connections past and present.
// Ordered by expected descending quantities (if all is well).
TotalPeers int
PendingPeers int
ActivePeers int
ConnectedSeeders int
HalfOpenPeers int
2016-07-05 15:52:33 +10:00
}