2
0
mirror of synced 2025-02-22 21:58:24 +00:00
torrent/torrent-stats.go
2023-05-09 15:46:52 +10:00

18 lines
508 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
PiecesComplete int
}