]> Sergey Matveev's repositories - btrtrc.git/blob - request-strategy/peer.go
Remove unused request strategy code
[btrtrc.git] / request-strategy / peer.go
1 package request_strategy
2
3 import (
4         "github.com/RoaringBitmap/roaring"
5 )
6
7 type PeerNextRequestState struct {
8         Interested bool
9         Requests   roaring.Bitmap
10 }