FedP2P/request-strategy/torrent.go

19 lines
446 B
Go

package request_strategy
import (
"github.com/anacrolix/torrent/metainfo"
"github.com/anacrolix/torrent/storage"
)
type Torrent struct {
Pieces []Piece
Capacity storage.TorrentCapacity
// Unclosed Peers. Not necessary for getting requestable piece ordering.
Peers []Peer
// Some value that's unique and stable between runs. Could even use the infohash?
InfoHash metainfo.Hash
ChunksPerPiece uint32
MaxUnverifiedBytes int64
}