FedP2P/request-strategy/torrent.go

7 lines
97 B
Go

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