From 38ff63aec03be6179a17ac1884ab318f329adf77 Mon Sep 17 00:00:00 2001 From: H.G.Muller Date: Mon, 4 Jul 2022 12:50:52 +0200 Subject: [PATCH] Increase size of input buffer Some engines send a very long variant feature... --- winboard/winboard.c | 2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/winboard/winboard.c b/winboard/winboard.c index 474534a..e45737b 100644 --- a/winboard/winboard.c +++ b/winboard/winboard.c @@ -664,7 +664,7 @@ typedef struct { SOCKET sock2; /* stderr socket for OpenRcmd */ } ChildProc; -#define INPUT_SOURCE_BUF_SIZE 4096 +#define INPUT_SOURCE_BUF_SIZE 10240 typedef struct _InputSource { CPKind kind; -- 1.7.0.4