2
0
mirror of synced 2025-02-24 06:38:14 +00:00
torrent/tracker/udp/scrape.go

12 lines
176 B
Go
Raw Normal View History

2021-06-24 14:38:16 +10:00
package udp
type ScrapeRequest []InfoHash
type ScrapeResponse []ScrapeInfohashResult
type ScrapeInfohashResult struct {
Seeders int32
Completed int32
Leechers int32
}