2
0
mirror of synced 2025-02-23 22:28:11 +00:00
torrent/tracker/udp/scrape.go
2021-06-24 23:13:35 +10:00

12 lines
176 B
Go

package udp
type ScrapeRequest []InfoHash
type ScrapeResponse []ScrapeInfohashResult
type ScrapeInfohashResult struct {
Seeders int32
Completed int32
Leechers int32
}