There is a MAX_SCRAPE_TORRENTS constant declared here.
The BEP 15. UDP Tracker Protocol for BitTorrent
defines this limit:
"Up to about 74 torrents can be scraped at once. A full scrape can't be done with this protocol."
The BEP 48. Tracker Protocol Extension: Scrape
does not explicitly mention this limit, but the limit is being used for
both the UDP and HTTP trackers since it's applied at the domain level:
- Here
- And here for limiting the number of peers in the
announce response.
@WarmBeer is this limit defined in any BEP or just a Torrust Tracker limit?
I would use a different const for the peer list limit. It's confusing.
There is a
MAX_SCRAPE_TORRENTSconstant declared here.The BEP 15. UDP Tracker Protocol for
BitTorrentdefines this limit:
"Up to about 74 torrents can be scraped at once. A full scrape can't be done with this protocol."
The BEP 48. Tracker Protocol Extension: Scrape
does not explicitly mention this limit, but the limit is being used for
both the UDP and HTTP trackers since it's applied at the domain level:
announceresponse.@WarmBeer is this limit defined in any BEP or just a Torrust Tracker limit?
I would use a different const for the peer list limit. It's confusing.