2
0
mirror of synced 2025-02-24 14:48:27 +00:00
torrent/torrent_stats.go
2020-03-16 16:30:39 +11:00

17 lines
486 B
Go

package torrent
// Due to ConnStats, may require special alignment on some platforms. See
// https://github.com/anacrolix/torrent/issues/383.
type TorrentStats struct {
// Aggregates stats over all connections past and present. Some values may not have much meaning
// in the aggregate context.
ConnStats
// Ordered by expected descending quantities (if all is well).
TotalPeers int
PendingPeers int
ActivePeers int
ConnectedSeeders int
HalfOpenPeers int
}