mirror of
https://github.com/CHOMPStation2/CHOMPStation2.git
synced 2025-12-11 10:43:20 +00:00
Co-authored-by: Heroman3003 <31296024+Heroman3003@users.noreply.github.com> Co-authored-by: Selis <selis@xynolabs.com>
12 lines
250 B
JavaScript
12 lines
250 B
JavaScript
/**
|
|
* @file
|
|
* @copyright 2020 Aleksej Komarov
|
|
* @license MIT
|
|
*/
|
|
|
|
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;
|