mirror of
https://gitea.invidious.io/iv-org/litespeed-quic.git
synced 2024-08-15 00:53:43 +00:00
Release 1.17.9
[BUGFIX] Engine: reduce minumum batch size from 256 to 4
This commit is contained in:
parent
a37b0c967c
commit
6b58dff0c3
3 changed files with 7 additions and 3 deletions
|
@ -1,3 +1,7 @@
|
||||||
|
2018-12-18
|
||||||
|
- 1.17.9
|
||||||
|
- [BUGFIX] Engine: reduce minumum batch size from 256 to 4
|
||||||
|
|
||||||
2018-12-10
|
2018-12-10
|
||||||
- 1.17.8
|
- 1.17.8
|
||||||
- [BUGFIX] Fix compilation on FreeBSD and 32-bit Linux
|
- [BUGFIX] Fix compilation on FreeBSD and 32-bit Linux
|
||||||
|
|
|
@ -25,7 +25,7 @@ extern "C" {
|
||||||
|
|
||||||
#define LSQUIC_MAJOR_VERSION 1
|
#define LSQUIC_MAJOR_VERSION 1
|
||||||
#define LSQUIC_MINOR_VERSION 17
|
#define LSQUIC_MINOR_VERSION 17
|
||||||
#define LSQUIC_PATCH_VERSION 8
|
#define LSQUIC_PATCH_VERSION 9
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Engine flags:
|
* Engine flags:
|
||||||
|
|
|
@ -66,8 +66,8 @@
|
||||||
|
|
||||||
/* The batch of outgoing packets grows and shrinks dynamically */
|
/* The batch of outgoing packets grows and shrinks dynamically */
|
||||||
#define MAX_OUT_BATCH_SIZE 1024
|
#define MAX_OUT_BATCH_SIZE 1024
|
||||||
#define MIN_OUT_BATCH_SIZE 256
|
#define MIN_OUT_BATCH_SIZE 4
|
||||||
#define INITIAL_OUT_BATCH_SIZE 512
|
#define INITIAL_OUT_BATCH_SIZE 32
|
||||||
|
|
||||||
struct out_batch
|
struct out_batch
|
||||||
{
|
{
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue