FedP2P/request-strategy/torrent.go

8 lines
122 B
Go

package request_strategy
type Torrent interface {
IgnorePiece(int) bool
ChunksPerPiece() uint32
PieceLength() int64
}