Release 2.19.3

- [BUGFIX] Regression in 2.19.1 that breaks Q050
This commit is contained in:
Dmitri Tikhonov 2020-08-04 07:22:29 -04:00
parent 244e8c6fb9
commit d39df4b619
4 changed files with 7 additions and 3 deletions

View file

@ -1,3 +1,7 @@
2020-08-04
- 2.19.3
- [BUGFIX] Regression in 2.19.1 that breaks Q050
2020-07-30 2020-07-30
- 2.19.2 - 2.19.2
- [BUGFIX] Do not reduce PLPMTU size by network overhead. - [BUGFIX] Do not reduce PLPMTU size by network overhead.

View file

@ -26,7 +26,7 @@ author = u'LiteSpeed Technologies'
# The short X.Y version # The short X.Y version
version = u'2.19' version = u'2.19'
# The full version, including alpha/beta/rc tags # The full version, including alpha/beta/rc tags
release = u'2.19.2' release = u'2.19.3'
# -- General configuration --------------------------------------------------- # -- General configuration ---------------------------------------------------

View file

@ -25,7 +25,7 @@ extern "C" {
#define LSQUIC_MAJOR_VERSION 2 #define LSQUIC_MAJOR_VERSION 2
#define LSQUIC_MINOR_VERSION 19 #define LSQUIC_MINOR_VERSION 19
#define LSQUIC_PATCH_VERSION 2 #define LSQUIC_PATCH_VERSION 3
/** /**
* Engine flags: * Engine flags:

View file

@ -799,7 +799,7 @@ gquic_Q050_gen_crypto_frame (unsigned char *buf, size_t buf_len,
lsquic_stream_id_t stream_id, uint64_t offset, int fin, lsquic_stream_id_t stream_id, uint64_t offset, int fin,
size_t size, gsf_read_f gsf_read, void *stream) size_t size, gsf_read_f gsf_read, void *stream)
{ {
return lsquic_ietf_v1_gen_crypto_frame(buf, 0x8, stream_id, buf_len, return lsquic_ietf_v1_gen_crypto_frame(buf, 0x8, buf_len, stream_id,
offset, fin, size, gsf_read, stream); offset, fin, size, gsf_read, stream);
} }