1
0
mirror of https://github.com/schollz/croc.git synced 2024-11-24 08:02:33 +03:00

raise max bytes to allow huge files #231

This commit is contained in:
Zack Scholl 2020-09-01 09:32:03 -07:00
parent b188a2691e
commit a8c5bef7c0

View File

@ -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 {