-
-
Notifications
You must be signed in to change notification settings - Fork 403
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Troubles with torrent seeding #671
Comments
Trouble solved. Added code before "StartAsync":
|
It'd probably be easier if the appropriate trackers are included in the .torrent file when creating it. Failing that, DHT should make this work too, though the initial peer discovery could be slow if there are only one or two actual peers accessing the torrent :) That said, is there anything I need to do on the library side or was this simply a setup issue for the torrents you're working with? |
Trackers have been added to torrent file. If upload a torrent file to qBitTorrent it works fine. |
Hrm, then what exactly do you mean by the previous code snippet where you said "adding this to StartAsync fixed the issue"? Where exactly did you add that tracker code? I thought this was in your own app/library, which made me think you were adding extra trackers beyond what was contained in the .torrent file itself. |
When creating a torrent, I create it as follows:
When I load a torrent file, I dont get a seeding due to lack of trackers. It worked only when I added them manually |
Can you share an example of one of those torrents where the trackers don't show up correctly? I wonder if you're accidentally adding all of the trackers in 1 tier when you create the torrent , versus adding each tracker as a separate tier when you do it manually. However the way that operates should be the same in all spec compliant torrent clients so it's surprising that one client would work better than another |
Code GetTrackers:
|
Having the same issue here (on 3.0.2). My torrents have the trackers added to them but they won't start sending data unless I manually add the tracker. The state of the torrent says "seeding" but no bytes are leaving. Using the same torrent with the same tracker with two different clients (qBittorrent and Transmission) works right away. It's a bit problematic for private torrents as the API doesn't allow manually adding trackers to them. |
Could both of you try the new alpha release - In addition, can you attach a logger for both the leecher client and seeder client and share the logs with me? It may have some private data (IP addresses of peers, filepaths for your torrent etc) so please review before sharing. Trim/redact anything you want redacted. It might help me figure out what the issue is if the new release doesn't help! |
There's a problem with the client seeding.
I am using home pc.
I tried to seeding torrent in every possible way, but attempts were unsuccessful.
I take a torrent file, start its "StartAsync", after checking the hash, the seeding starts, but it is not actually there.
If I take the torrent file and start it in qBitTorrent - seeding goes.
I tried to switch off the firewall, also changed ports and various parameters.
Code: `
public class ManageTorrentSeedService
{
private ClientEngine _engine;
}`
The text was updated successfully, but these errors were encountered: