Release 2.14.2

- [BUGFIX] Use ls-qpack 2.0.4
- [BUGFIX] Honor max packet size on the client and when path changes.
- http_server: fix prepare_decode() function.
This commit is contained in:
Dmitri Tikhonov 2020-04-08 12:51:04 -04:00
parent 77a28812de
commit 7ae4a10d41
7 changed files with 58 additions and 8 deletions

View file

@ -693,6 +693,16 @@ settings structure:
Default value is @ref LSQUIC_DF_TIMESTAMPS
.. member:: unsigned short es_max_packet_size_rx
Maximum packet size we are willing to receive. This is sent to
peer in transport parameters: the library does not enforce this
limit for incoming packets.
If set to zero, limit is not set.
Default value is :macro:`LSQUIC_DF_MAX_PACKET_SIZE_RX`
To initialize the settings structure to library defaults, use the following
convenience function:
@ -867,6 +877,10 @@ out of date. Please check your :file:`lsquic.h` for actual values.*
Delayed ACKs are off by default.
.. macro:: LSQUIC_DF_MAX_PACKET_SIZE_RX
By default, incoming packet size is not limited.
Receiving Packets
-----------------

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.1'
release = u'2.14.2'
# -- General configuration ---------------------------------------------------