From 3f15ea5ae4fe12f85df932a9220483e7088f7fc6 Mon Sep 17 00:00:00 2001 From: Alexander Leitner Date: Wed, 5 Mar 2025 18:27:04 -0500 Subject: [PATCH] GUACAMOLE-2036: Increase the number of max elements to match guacamole server. --- .../java/org/apache/guacamole/protocol/GuacamoleParser.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/guacamole-common/src/main/java/org/apache/guacamole/protocol/GuacamoleParser.java b/guacamole-common/src/main/java/org/apache/guacamole/protocol/GuacamoleParser.java index 378b471cc..52a44d8a4 100644 --- a/guacamole-common/src/main/java/org/apache/guacamole/protocol/GuacamoleParser.java +++ b/guacamole-common/src/main/java/org/apache/guacamole/protocol/GuacamoleParser.java @@ -44,7 +44,7 @@ public class GuacamoleParser implements Iterator { /** * 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.