Skip to content
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

Compared to Qbittorrent the download speed is very slow #706

Open
xDreamms opened this issue Nov 10, 2024 · 0 comments
Open

Compared to Qbittorrent the download speed is very slow #706

xDreamms opened this issue Nov 10, 2024 · 0 comments

Comments

@xDreamms
Copy link

xDreamms commented Nov 10, 2024

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();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant