0
0
Fork 0
mirror of https://github.com/schollz/croc.git synced 2025-10-11 13:21:00 +02: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 {