Join GitHub today
GitHub is home to over 40 million developers working together to host and review code, manage projects, and build software together.
Sign upSpecify 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