status-go/vendor/github.com/anacrolix/torrent/protocol.go

10 lines
184 B
Go
Raw Normal View History

2022-03-10 09:44:48 +00:00
package torrent
import (
pp "github.com/anacrolix/torrent/peer_protocol"
)
func makeCancelMessage(r Request) pp.Message {
return pp.MakeCancelMessage(r.Index, r.Begin, r.Length)
}