🐎 Increase maximum download speed to 25 MB/s

This commit is contained in:
C-3PO 2018-11-16 16:39:33 +01:00
parent 43d4019860
commit cad71700b5
Signed by: c3po
GPG key ID: 62993C4BB4D86F24

View file

@ -2,8 +2,8 @@ import * as childProcess from 'child_process';
/** Minimum download speed of 10 MB/s = 80 MBit/s */
const MINIMUM_SPEED = 10;
/** Maximum download speed of 20 MB/s = 160 MBit/s */
const MAXIMUM_SPEED = 20;
/** Maximum download speed of 25 MB/s = 200 MBit/s */
const MAXIMUM_SPEED = 25;
/** Time interval over which the minimum speed is measured to determined whether to timeout. Given in seconds. */
const CHECK_INTERVAL = 15;