Release 2.14.3

- [BUGFIX] gQUIC: pass correct stream to hsi_create_header_set() callback.
- [BUGFIX] Use ls-hpack 2.1.1
- Improve stream code readability.
- Use ls-qpack 2.0.5
This commit is contained in:
Dmitri Tikhonov 2020-04-15 09:30:40 -04:00
parent 7ae4a10d41
commit 08c45823bc
14 changed files with 297 additions and 49 deletions

View file

@ -1477,7 +1477,8 @@ fields yourself. In that case, the header set must be "read" from the stream vi
.. member:: void * (*hsi_create_header_set)(void *hsi_ctx, lsquic_stream_t *stream, int is_push_promise)
:param hsi_ctx: User context. This is the pointer specifed in ``ea_hsi_ctx``.
:param stream: Stream with which the header set is associated.
:param stream: Stream with which the header set is associated. May be set
to NULL in server mode.
:param is_push_promise: Boolean value indicating whether this header set is
for a push promise.
:return: Pointer to user-defined header set object.

View file

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