Release 1.17.9

[BUGFIX] Engine: reduce minumum batch size from 256 to 4
This commit is contained in:
Dmitri Tikhonov 2018-12-18 15:23:07 -05:00
parent a37b0c967c
commit 6b58dff0c3
3 changed files with 7 additions and 3 deletions

View file

@ -66,8 +66,8 @@
/* The batch of outgoing packets grows and shrinks dynamically */
#define MAX_OUT_BATCH_SIZE 1024
#define MIN_OUT_BATCH_SIZE 256
#define INITIAL_OUT_BATCH_SIZE 512
#define MIN_OUT_BATCH_SIZE 4
#define INITIAL_OUT_BATCH_SIZE 32
struct out_batch
{