2
0
mirror of synced 2025-02-24 14:48:27 +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
}