undo increase of buffer size (bad for responsiveness)

This commit is contained in:
cy384 2021-06-01 21:33:41 -04:00
parent 9a7b95ef6f
commit cad648bb4a
1 changed files with 2 additions and 1 deletions

View File

@ -20,7 +20,8 @@
#define SSHEVEN_REQUIRED_PARTITION SSHEVEN_MINIMUM_PARTITION
/* size in bytes for recv and send thread buffers */
#define SSHEVEN_BUFFER_SIZE 16*1024
/* making this too large is bad for responsiveness on 68k machines */
#define SSHEVEN_BUFFER_SIZE 4*1024
/* default terminal string */
#define SSHEVEN_DEFAULT_TERM_STRING "xterm-16color"