YTSFlix_Go/vendor/github.com/anacrolix/torrent/protocol.go

10 lines
184 B
Go
Raw Normal View History

2018-11-04 14:58:15 +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)
}