From 49ea8c0ec17715f30929c03b2bf2262b3a3bc492 Mon Sep 17 00:00:00 2001 From: Graham Barr Date: Mon, 18 Aug 2014 09:51:33 -0500 Subject: [PATCH] Increase buffer size to 8K --- client/common.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/common.go b/client/common.go index ad47936..e520bf0 100644 --- a/client/common.go +++ b/client/common.go @@ -5,7 +5,7 @@ const ( // queue size queueSize = 8 // read buffer size - bufferSize = 1024 + bufferSize = 8192 // min packet length minPacketLength = 12