GUACAMOLE-2036: Merge correction to maximum number of instruction elements (parity with guacamole-server).

This commit is contained in:
Mike Jumper
2025-03-05 17:08:35 -08:00
committed by GitHub

View File

@@ -45,7 +45,7 @@ public class GuacamoleParser implements Iterator<GuacamoleInstruction> {
/**
* The maximum number of elements per instruction, including the opcode.
*/
public static final int INSTRUCTION_MAX_ELEMENTS = 64;
public static final int INSTRUCTION_MAX_ELEMENTS = 128;
/**
* All possible states of the instruction parser.