]> Sergey Matveev's repositories - btrtrc.git/blob - request-strategy/torrent.go
Merge branch 'master' into lazylog
[btrtrc.git] / request-strategy / torrent.go
1 package request_strategy
2
3 type Torrent interface {
4         Piece(int) Piece
5         ChunksPerPiece() uint32
6         PieceLength() int64
7 }