Track tasks and feature requests
Join 40 million developers who use GitHub issues to help identify, assign, and keep track of the features and bug fixes your projects need.
Sign up for free See pricing for teams and enterprisesSpecify tracker at seeding #268
Closed
Comments
This comment has been minimized.
This comment has been minimized.
|
Yep, you can pass in any valid Just use the client.seed(files, {
announce: [ 'udp://tracker.publicbt.com:80', 'udp://tracker.openbittorrent.com:80' ]
}, onTorrent)Or, you can prioritize the trackers in "tiers" with the client.seed(files, {
announceList: [
[ 'udp://tracker.publicbt.com:80', 'udp://tracker.openbittorrent.com:80' ],
[ 'tier2' ],
[ 'tier3 first', 'tier3 second' ]
]
}, onTorrent)If you omit this option entirely, then some default trackers will be selected, as specified, in the |
This comment has been minimized.
This comment has been minimized.
|
And how we can seed to wss tracker ? |
This comment has been minimized.
This comment has been minimized.
|
That's not supported yet, sorry. See: #202 |
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Is it possible to specify specific tracker when we use seed method ?
Thank you