Release 3.2.0

This commit is contained in:
George Wang 2022-10-20 11:47:58 -04:00
parent a5347f2374
commit 0e32849de5
5 changed files with 17 additions and 8 deletions

View file

@ -1,3 +1,10 @@
2022-10-20
- 3.2.0
- Update ls-qpack to 2.5.0 to address a decoder bug
- Address a few corner cases that trigger assert failures.
- Properly handle unexpected large packet for gQUIC.
2022-08-16
- 3.1.2
- Update ls-qpack to 2.4.0 to address a use-after-free bug

View file

@ -24,9 +24,9 @@ copyright = u'2022, LiteSpeed Technologies'
author = u'LiteSpeed Technologies'
# The short X.Y version
version = u'3.1'
version = u'3.2'
# The full version, including alpha/beta/rc tags
release = u'3.1.2'
release = u'3.2.0'
# -- General configuration ---------------------------------------------------

View file

@ -24,8 +24,8 @@ extern "C" {
#endif
#define LSQUIC_MAJOR_VERSION 3
#define LSQUIC_MINOR_VERSION 1
#define LSQUIC_PATCH_VERSION 2
#define LSQUIC_MINOR_VERSION 2
#define LSQUIC_PATCH_VERSION 0
/**
* Engine flags:

View file

@ -73,7 +73,8 @@ static void
rechist_dump(struct lsquic_rechist *rechist)
{
fprintf(stderr,
"%p: cutoff %"PRIu64" l. acked %"PRIu64" masks %u alloced %u used %u max ranges %u head %u\n",
"%p: cutoff %" PRIu64 " l. acked %" PRIu64
" masks %u alloced %u used %u max ranges %u head %u\n",
rechist,
rechist->rh_cutoff,
rechist->rh_largest_acked_received,

View file

@ -195,6 +195,7 @@ test5 (void)
lsquic_rechist_cleanup(&rechist);
}
/* Regression test for bug where rechist ends up empty (rh_used == 0)
* with invalid head entry with a self-referential next, and
* lsquic_rechist_received would follow it because it didn't check rh_used.