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

@ -1,3 +1,7 @@
2018-12-18
- 1.17.9
- [BUGFIX] Engine: reduce minumum batch size from 256 to 4
2018-12-10
- 1.17.8
- [BUGFIX] Fix compilation on FreeBSD and 32-bit Linux

View file

@ -25,7 +25,7 @@ extern "C" {
#define LSQUIC_MAJOR_VERSION 1
#define LSQUIC_MINOR_VERSION 17
#define LSQUIC_PATCH_VERSION 8
#define LSQUIC_PATCH_VERSION 9
/**
* Engine flags:

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
{