10 lines
184 B
Go
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)
|
||
|
}
|