File tree Expand file tree Collapse file tree 3 files changed +7
-3
lines changed Expand file tree Collapse file tree 3 files changed +7
-3
lines changed Original file line number Diff line number Diff line change
1
+ 2018-12-18
2
+ - 1.17.9
3
+ - [BUGFIX] Engine: reduce minumum batch size from 256 to 4
4
+
1
5
2018-12-10
2
6
- 1.17.8
3
7
- [BUGFIX] Fix compilation on FreeBSD and 32-bit Linux
Original file line number Diff line number Diff line change @@ -25,7 +25,7 @@ extern "C" {
25
25
26
26
#define LSQUIC_MAJOR_VERSION 1
27
27
#define LSQUIC_MINOR_VERSION 17
28
- #define LSQUIC_PATCH_VERSION 8
28
+ #define LSQUIC_PATCH_VERSION 9
29
29
30
30
/**
31
31
* Engine flags:
Original file line number Diff line number Diff line change 66
66
67
67
/* The batch of outgoing packets grows and shrinks dynamically */
68
68
#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
71
71
72
72
struct out_batch
73
73
{
You can’t perform that action at this time.
0 commit comments