mirror of
https://github.com/status-im/status-go.git
synced 2025-01-10 14:47:06 +00:00
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)
|
||
|
}
|