2
0
mirror of synced 2025-02-24 06:38:14 +00:00
2021-11-29 10:14:16 +11:00

17 lines
329 B
Go

package request_strategy
import (
"github.com/anacrolix/torrent/metainfo"
"github.com/anacrolix/torrent/storage"
)
type Torrent struct {
Pieces []Piece
Capacity storage.TorrentCapacity
// Some value that's unique and stable between runs.
InfoHash metainfo.Hash
ChunksPerPiece uint32
MaxUnverifiedBytes int64
}