mirror of
https://gitea.invidious.io/iv-org/litespeed-quic.git
synced 2024-08-15 00:53:43 +00:00
Latest changes
- Add support for Q041; drop support for Q040
This commit is contained in:
parent
fc214ce40d
commit
1b97e4af1f
22 changed files with 87 additions and 94 deletions
|
@ -67,9 +67,9 @@ enum lsquic_version
|
|||
LSQVER_039,
|
||||
|
||||
/**
|
||||
* Q040. RST_STREAM, ACK and STREAM frames match IETF format.
|
||||
* Q041. RST_STREAM, ACK and STREAM frames match IETF format.
|
||||
*/
|
||||
LSQVER_040,
|
||||
LSQVER_041,
|
||||
|
||||
N_LSQVER
|
||||
};
|
||||
|
@ -79,9 +79,9 @@ enum lsquic_version
|
|||
* @see lsquic_version
|
||||
*/
|
||||
#define LSQUIC_SUPPORTED_VERSIONS ((1 << LSQVER_035) | (1 << LSQVER_037) | \
|
||||
(1 << LSQVER_038) | (1 << LSQVER_039) | (1 << LSQVER_040))
|
||||
(1 << LSQVER_038) | (1 << LSQVER_039) | (1 << LSQVER_041))
|
||||
|
||||
#define LSQUIC_EXPERIMENTAL_VERSIONS ((1 << LSQVER_040))
|
||||
#define LSQUIC_EXPERIMENTAL_VERSIONS ((1 << LSQVER_041))
|
||||
|
||||
/**
|
||||
* @struct lsquic_stream_if
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue