/** * @file * @copyright 2020 Aleksej Komarov * @license MIT */ export const PING_INTERVAL = 2500; export const PING_TIMEOUT = 2000; export const PING_MAX_FAILS = 3; export const PING_QUEUE_SIZE = 8; export const PING_ROUNDTRIP_BEST = 50; export const PING_ROUNDTRIP_WORST = 200;