YTSFlix_Go/vendor/github.com/anacrolix/torrent/protocol.go
2018-11-04 15:58:15 +01:00

10 lines
184 B
Go

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)
}