/** Current gateway protocol version emitted by modern clients and servers. */ export const PROTOCOL_VERSION = 4 as const; /** Lowest client protocol version accepted by the gateway. */ export const MIN_CLIENT_PROTOCOL_VERSION = 4 as const; /** Lowest lightweight probe protocol version accepted by the gateway. */ export const MIN_PROBE_PROTOCOL_VERSION = 4 as const;