From f5d5d527b2235906309ff8411dd11527a408b811 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ren=C3=A9=20Canna=C3=B2?= Date: Wed, 9 Sep 2015 19:02:30 +0000 Subject: [PATCH] Increased net_buffer_size to 32K Yet still hardcoded We must follow up on issue #262 --- include/MySQL_Data_Stream.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/include/MySQL_Data_Stream.h b/include/MySQL_Data_Stream.h index c1fb3588c..c0d0bb6b3 100644 --- a/include/MySQL_Data_Stream.h +++ b/include/MySQL_Data_Stream.h @@ -5,7 +5,7 @@ #include "cpp.h" -#define QUEUE_T_DEFAULT_SIZE 8192 +#define QUEUE_T_DEFAULT_SIZE 32768 typedef struct _queue_t { void *buffer;