]> Sergey Matveev's repositories - btrtrc.git/blob - request-strategy/torrent.go
Remove unused peer stuff in request strategy
[btrtrc.git] / request-strategy / torrent.go
1 package request_strategy
2
3 import (
4         "github.com/anacrolix/torrent/metainfo"
5         "github.com/anacrolix/torrent/storage"
6 )
7
8 type Torrent struct {
9         Pieces   []Piece
10         Capacity storage.TorrentCapacity
11         // Some value that's unique and stable between runs.
12         InfoHash       metainfo.Hash
13         ChunksPerPiece uint32
14
15         MaxUnverifiedBytes int64
16 }