mirror of
https://gitea.invidious.io/iv-org/litespeed-quic.git
synced 2024-08-15 00:53:43 +00:00
[BUGFIX] Properly enable ACK but disable RETX of DATAGRAM frame.
This commit is contained in:
parent
4b2a063fcf
commit
01c36b79df
1 changed files with 3 additions and 3 deletions
|
@ -226,13 +226,13 @@ extern const char *const lsquic_pns2str[];
|
|||
| QUIC_FTBIT_HANDSHAKE_DONE \
|
||||
| QUIC_FTBIT_ACK_FREQUENCY \
|
||||
| QUIC_FTBIT_TIMESTAMP \
|
||||
| QUIC_FTBIT_DATAGRAM \
|
||||
| QUIC_FTBIT_CRYPTO )
|
||||
|
||||
/* [draft-ietf-quic-transport-24] Section 1.2 */
|
||||
#define IQUIC_FRAME_ACKABLE_MASK ( \
|
||||
ALL_IQUIC_FRAMES & ~(QUIC_FTBIT_ACK|QUIC_FTBIT_PADDING\
|
||||
|QUIC_FTBIT_CONNECTION_CLOSE|QUIC_FTBIT_TIMESTAMP))
|
||||
(ALL_IQUIC_FRAMES | QUIC_FTBIT_DATAGRAM) \
|
||||
& ~(QUIC_FTBIT_ACK | QUIC_FTBIT_PADDING \
|
||||
| QUIC_FTBIT_CONNECTION_CLOSE | QUIC_FTBIT_TIMESTAMP))
|
||||
|
||||
/* [draft-ietf-quic-transport-20], Section 13.2 */
|
||||
/* We bend some rules and retransmit BLOCKED, MAX_DATA, MAX_STREAM_DATA,
|
||||
|
|
Loading…
Reference in a new issue