From fed76aaee78a3a1b07f8842b1990d2b6f7486d76 Mon Sep 17 00:00:00 2001 From: Ivica Ico Bukvic <ico@vt.edu> Date: Sat, 18 Jan 2014 13:03:23 -0500 Subject: [PATCH] *experimental: disabled flow control as per http://article.gmane.org/gmane.comp.multimedia.puredata.general/24447 --- pd/src/s_inter.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/pd/src/s_inter.c b/pd/src/s_inter.c index fe2e8255a..0173c9ee0 100644 --- a/pd/src/s_inter.c +++ b/pd/src/s_inter.c @@ -579,7 +579,8 @@ void sys_closesocket(int fd) /* ---------------------- sending messages to the GUI ------------------ */ #define GUI_ALLOCCHUNK 8192 #define GUI_UPDATESLICE 512 /* how much we try to do in one idle period */ -#define GUI_BYTESPERPING 1024 /* how much we send up per ping */ +//#define GUI_BYTESPERPING 1024 /* how much we send up per ping */ +#define GUI_BYTESPERPING 0x7fffffff /* as per Miller's suggestion to disable the flow control */ typedef struct _guiqueue { -- GitLab