Skip to content

Commit

Permalink
Release 1.17.9
Browse files Browse the repository at this point in the history
[BUGFIX] Engine: reduce minumum batch size from 256 to 4
  • Loading branch information
Dmitri Tikhonov committed Dec 18, 2018
1 parent a37b0c9 commit 6b58dff
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -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
Expand Down
2 changes: 1 addition & 1 deletion include/lsquic.h
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down
4 changes: 2 additions & 2 deletions src/liblsquic/lsquic_engine.c
Original file line number Diff line number Diff line change
Expand Up @@ -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
{
Expand Down

0 comments on commit 6b58dff

Please sign in to comment.