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

11 lines
193 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.
ActivePeers int
HalfOpenPeers int
PendingPeers int
TotalPeers int
2016-07-05 15:52:33 +10:00
}