mirror of
https://gitea.invidious.io/iv-org/litespeed-quic.git
synced 2024-08-15 00:53:43 +00:00
Release 2.29.0
- [FEATURE] QUIC and HTTP/3 Internet Draft 34 support and v1 support. The latter is turned off by default. - Drop support for ID-28 and ID-32. - [BUGFIX] IETF QUIC mini conn receive history (trechist): allow unlimited inserts by dropping smallest elements. - [BUGFIX] gQUIC: set STTL to correct value, issue #226. - [BUGFIX] Account for poison packet gap when MTU probe was too large.
This commit is contained in:
parent
ac0ce07bd0
commit
26e8f082c9
29 changed files with 411 additions and 178 deletions
|
@ -50,17 +50,18 @@ developed by the IETF. Both types are included in a single enum:
|
|||
|
||||
IETF QUIC version ID (Internet-Draft) 27; this version is deprecated.
|
||||
|
||||
.. member:: LSQVER_ID28
|
||||
|
||||
IETF QUIC version ID 28; this version is deprecated.
|
||||
|
||||
.. member:: LSQVER_ID29
|
||||
|
||||
IETF QUIC version ID 29
|
||||
|
||||
.. member:: LSQVER_ID32
|
||||
.. member:: LSQVER_ID34
|
||||
|
||||
IETF QUIC version ID 32
|
||||
IETF QUIC version ID 34
|
||||
|
||||
.. member:: LSQVER_I001
|
||||
|
||||
IETF QUIC version 1. (This version is disabled by default until
|
||||
the QUIC RFC is released).
|
||||
|
||||
.. member:: N_LSQVER
|
||||
|
||||
|
|
|
@ -24,9 +24,9 @@ copyright = u'2021, LiteSpeed Technologies'
|
|||
author = u'LiteSpeed Technologies'
|
||||
|
||||
# The short X.Y version
|
||||
version = u'2.28'
|
||||
version = u'2.29'
|
||||
# The full version, including alpha/beta/rc tags
|
||||
release = u'2.28.0'
|
||||
release = u'2.29.0'
|
||||
|
||||
|
||||
# -- General configuration ---------------------------------------------------
|
||||
|
|
|
@ -16,9 +16,9 @@ Most of the code in this distribution has been used in our own products
|
|||
-- `LiteSpeed Web Server`_, `LiteSpeed Web ADC`_, and OpenLiteSpeed_ --
|
||||
since 2017.
|
||||
|
||||
Currently supported QUIC versions are Q043, Q046, Q050, ID-27, ID-28,
|
||||
ID-29, and ID-32.
|
||||
Support for newer versions will be added soon after they are released.
|
||||
Currently supported QUIC versions are v1 (disabled by default until the
|
||||
QUIC RFC is released); Internet-Draft versions 34, 29, and 27;
|
||||
and the older "Google" QUIC versions Q043, Q046, an Q050.
|
||||
|
||||
LSQUIC is licensed under the `MIT License`_; see LICENSE in the source
|
||||
distribution for details.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue