2
0
mirror of synced 2025-02-24 14:48:27 +00:00
2021-06-07 13:01:39 +10:00

12 lines
253 B
Go

package request_strategy
type Torrent struct {
Pieces []Piece
Capacity *func() *int64
Peers []Peer // not closed.
// Some value that's unique and stable between runs. Could even use the infohash?
StableId uintptr
MaxUnverifiedBytes int64
}