Skip to content

Commit

Permalink
Release 2.12.1
Browse files Browse the repository at this point in the history
[BUGFIX] ACK ping-pong: TIMESTAMP frame is not to be acked.
  • Loading branch information
Dmitri Tikhonov committed Mar 23, 2020
1 parent aedecb4 commit f4bfba0
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
2020-03-23
- 2.12.1
- [BUGFIX] ACK ping-pong: TIMESTAMP frame is not to be acked.

2020-03-02
- 2.12.0
- [FEATURE] QUIC timestamps extension.
Expand Down
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@
# The short X.Y version
version = u'2.12'
# The full version, including alpha/beta/rc tags
release = u'2.12.0'
release = u'2.12.1'


# -- General configuration ---------------------------------------------------
Expand Down
2 changes: 1 addition & 1 deletion include/lsquic.h
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ extern "C" {

#define LSQUIC_MAJOR_VERSION 2
#define LSQUIC_MINOR_VERSION 12
#define LSQUIC_PATCH_VERSION 0
#define LSQUIC_PATCH_VERSION 1

/**
* Engine flags:
Expand Down
2 changes: 1 addition & 1 deletion src/liblsquic/lsquic_packet_common.h
Original file line number Diff line number Diff line change
Expand Up @@ -227,7 +227,7 @@ extern const char *const lsquic_pns2str[];
/* [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_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,
Expand Down

0 comments on commit f4bfba0

Please sign in to comment.