From 9ece4b7a5beb017648cd3ccd07c34a7f9dcf75d5 Mon Sep 17 00:00:00 2001 From: Nick Couchman Date: Sat, 17 Aug 2019 22:08:12 -0400 Subject: [PATCH] GUACAMOLE-860: [WIP] Interim buildout of TN5250 support. --- src/protocols/tn5250/tn5250.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/protocols/tn5250/tn5250.c b/src/protocols/tn5250/tn5250.c index 76d378c8..90fbf3ae 100644 --- a/src/protocols/tn5250/tn5250.c +++ b/src/protocols/tn5250/tn5250.c @@ -552,5 +552,10 @@ void __guac_tn5250_recv_sna_packet(guac_client* client, telnet_event_t* event) { } + /* Process data until we get the EOR option */ + while (packet[i] != TELNET_TELOPT_EOR) { + + } + }