Skip to content
Snippets Groups Projects
Commit a06452f2 authored by Morris Jette's avatar Morris Jette
Browse files

sbcast default buffer size set to 8MB

This matches the documentation
parent 73d5519b
No related branches found
No related tags found
No related merge requests found
......@@ -109,6 +109,8 @@ extern void parse_command_line(int argc, char *argv[])
params.preserve = true;
if ( ( env_val = getenv("SBCAST_SIZE") ) )
params.block_size = _map_size(env_val);
else
params.block_size = 8 * 1024 * 1024;
if ( ( env_val = getenv("SBCAST_TIMEOUT") ) )
params.timeout = (atoi(env_val) * 1000);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment