github.com/anacrolix/torrent@v1.61.0/peer-stats.go (about)

     1  package torrent
     2  
     3  type PeerStats struct {
     4  	ConnStats
     5  
     6  	DownloadRate        float64
     7  	LastWriteUploadRate float64
     8  	// How many pieces the peer has.
     9  	RemotePieceCount int
    10  }