Skip to content

Commit 6b58dff

Browse files
author
Dmitri Tikhonov
committed
Release 1.17.9
[BUGFIX] Engine: reduce minumum batch size from 256 to 4
1 parent a37b0c9 commit 6b58dff

File tree

3 files changed

+7
-3
lines changed

3 files changed

+7
-3
lines changed

CHANGELOG

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,7 @@
1+
2018-12-18
2+
- 1.17.9
3+
- [BUGFIX] Engine: reduce minumum batch size from 256 to 4
4+
15
2018-12-10
26
- 1.17.8
37
- [BUGFIX] Fix compilation on FreeBSD and 32-bit Linux

include/lsquic.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ extern "C" {
2525

2626
#define LSQUIC_MAJOR_VERSION 1
2727
#define LSQUIC_MINOR_VERSION 17
28-
#define LSQUIC_PATCH_VERSION 8
28+
#define LSQUIC_PATCH_VERSION 9
2929

3030
/**
3131
* Engine flags:

src/liblsquic/lsquic_engine.c

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -66,8 +66,8 @@
6666

6767
/* The batch of outgoing packets grows and shrinks dynamically */
6868
#define MAX_OUT_BATCH_SIZE 1024
69-
#define MIN_OUT_BATCH_SIZE 256
70-
#define INITIAL_OUT_BATCH_SIZE 512
69+
#define MIN_OUT_BATCH_SIZE 4
70+
#define INITIAL_OUT_BATCH_SIZE 32
7171

7272
struct out_batch
7373
{

0 commit comments

Comments
 (0)