YTSFlix_Go/vendor/github.com/anacrolix/torrent/torrent_stats.go
2018-11-04 15:58:15 +01:00

15 lines
360 B
Go

package torrent
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
}