mirror of
https://github.com/GravitLauncher/Launcher
synced 2025-03-28 12:08:19 +03:00
20 lines
574 B
Java
20 lines
574 B
Java
package ru.gravit.launcher.serialize;
|
|
|
|
import ru.gravit.launcher.LauncherAPI;
|
|
|
|
public class SerializeLimits {
|
|
@LauncherAPI
|
|
public static final int MAX_LOGIN = 1024;
|
|
@LauncherAPI
|
|
public static final int MAX_CLIENT = 128;
|
|
@LauncherAPI
|
|
public static final int MAX_SERVERID = 128;
|
|
@LauncherAPI
|
|
public static final int MAX_QUEUE_SIZE = 128;
|
|
@LauncherAPI
|
|
public static final int MAX_BATCH_SIZE = 128;
|
|
@LauncherAPI
|
|
public static final byte EXPECTED_BYTE = 0b01010101;
|
|
@LauncherAPI
|
|
public static final int MAX_DIGEST = 512;
|
|
}
|