2
0
mirror of synced 2025-02-24 14:48:27 +00:00
2021-12-12 18:35:02 +11:00

14 lines
224 B
Go

package request_strategy
import (
"github.com/RoaringBitmap/roaring"
)
type PeerRequestState struct {
Interested bool
// Expecting
Requests roaring.Bitmap
// Cancelled and waiting response
Cancelled roaring.Bitmap
}