From a8c5bef7c0eed07907436a7651b06837b633c9a3 Mon Sep 17 00:00:00 2001 From: Zack Scholl Date: Tue, 1 Sep 2020 09:32:03 -0700 Subject: [PATCH] raise max bytes to allow huge files #231 --- src/comm/comm.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/comm/comm.go b/src/comm/comm.go index 85ed4649..f3732c65 100644 --- a/src/comm/comm.go +++ b/src/comm/comm.go @@ -10,7 +10,7 @@ import ( log "github.com/schollz/logger" ) -const MAXBYTES = 1000000 +const MAXBYTES = 4000000 // Comm is some basic TCP communication type Comm struct {