diff --git a/src/routes/Settings/useStreamingServerSettingsInputs.js b/src/routes/Settings/useStreamingServerSettingsInputs.js index 608a8390e..8e1e3405c 100644 --- a/src/routes/Settings/useStreamingServerSettingsInputs.js +++ b/src/routes/Settings/useStreamingServerSettingsInputs.js @@ -18,10 +18,10 @@ const cacheSizeToString = (size) => { const TORRENT_PROFILES = { default: { - btDownloadSpeedHardLimit: 2621440, - btDownloadSpeedSoftLimit: 1677721.6, + btDownloadSpeedHardLimit: 3670016, + btDownloadSpeedSoftLimit: 2621440, btHandshakeTimeout: 20000, - btMaxConnections: 35, + btMaxConnections: 55, btMinPeersForStable: 5, btRequestTimeout: 4000 }, @@ -40,6 +40,14 @@ const TORRENT_PROFILES = { btMaxConnections: 200, btMinPeersForStable: 10, btRequestTimeout: 4000 + }, + 'ultra fast': { + btDownloadSpeedHardLimit: 78643200, + btDownloadSpeedSoftLimit: 8388608, + btHandshakeTimeout: 25000, + btMaxConnections: 400, + btMinPeersForStable: 10, + btRequestTimeout: 6000 } };