1
1
Fork 0
mirror of https://github.com/schollz/croc.git synced 2025-10-11 05:11:06 +02:00

don't load the whole thing into memory

This commit is contained in:
Zack Scholl 2019-04-13 02:36:46 -07:00
parent e16407f5cf
commit c5feb2f503

View file

@ -82,7 +82,7 @@ func new(s internalSess.Session) *Session {
initialized: false,
dataBuff: make([]byte, senderBuffSize),
stopSending: make(chan struct{}, 1),
output: make(chan outputMsg, senderBuffSize*10),
output: make(chan outputMsg, 100),
doneCheck: false,
readingStats: stats.New(),
spinner: spin,