Skip to content

Commit

Permalink
Release 2.19.3
Browse files Browse the repository at this point in the history
- [BUGFIX] Regression in 2.19.1 that breaks Q050
  • Loading branch information
Dmitri Tikhonov committed Aug 4, 2020
1 parent 244e8c6 commit d39df4b
Show file tree
Hide file tree
Showing 4 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 @@
2020-08-04
- 2.19.3
- [BUGFIX] Regression in 2.19.1 that breaks Q050

2020-07-30
- 2.19.2
- [BUGFIX] Do not reduce PLPMTU size by network overhead.
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
# The short X.Y version
version = u'2.19'
# The full version, including alpha/beta/rc tags
release = u'2.19.2'
release = u'2.19.3'


# -- General configuration ---------------------------------------------------
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 2
#define LSQUIC_MINOR_VERSION 19
#define LSQUIC_PATCH_VERSION 2
#define LSQUIC_PATCH_VERSION 3

/**
* Engine flags:
Expand Down
2 changes: 1 addition & 1 deletion src/liblsquic/lsquic_parse_Q050.c
Original file line number Diff line number Diff line change
Expand Up @@ -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,
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);
}

Expand Down

0 comments on commit d39df4b

Please sign in to comment.