We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
What can I do to make it same download speeds with QBittorrent or is there any torrent download client fast as QBittorent?
My settings:
private ClientEngine InitClientEngine() { int DefaultPort = 55123; var settingBuilder = new EngineSettingsBuilder { MaximumConnections = 5000, MaximumOpenFiles = 500, MaximumUploadRate = 0, MaximumDownloadRate = 0, MaximumDiskReadRate = 0, MaximumDiskWriteRate = 0, MaximumHalfOpenConnections = 12, AllowPortForwarding = true, AutoSaveLoadDhtCache = true, AutoSaveLoadFastResume = true, AutoSaveLoadMagnetLinkMetadata = true, ListenEndPoints = new Dictionary<string, IPEndPoint> { { "ipv4", new IPEndPoint (IPAddress.Any, DefaultPort) }, { "ipv6", new IPEndPoint (IPAddress.IPv6Any, DefaultPort) } }, DhtEndPoint = new IPEndPoint(IPAddress.Any, DefaultPort), }.ToSettings(); return new ClientEngine(settingBuilder); } private TorrentSettings GetTorrentSettings() { return new TorrentSettingsBuilder { MaximumConnections = 5000, UploadSlots = 200, MaximumUploadRate = 0, MaximumDownloadRate = 0 }.ToSettings(); }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
What can I do to make it same download speeds with QBittorrent or is there any torrent download client fast as QBittorent?
My settings:
The text was updated successfully, but these errors were encountered: