FedP2P/tracker/udp/scrape.go

12 lines
176 B
Go
Raw Normal View History

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