2
0
mirror of synced 2025-02-23 22:28:11 +00:00

15 lines
309 B
Go
Raw Normal View History

package request_strategy
import (
"github.com/anacrolix/torrent/metainfo"
)
type Torrent struct {
Pieces []Piece
// Some value that's unique and stable between runs.
2021-09-19 15:16:37 +10:00
InfoHash metainfo.Hash
ChunksPerPiece uint32
// TODO: This isn't actually configurable anywhere yet.
MaxUnverifiedBytes int64
}