Skip to content

Commit

Permalink
Release 3.0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
gwanglst committed Jun 29, 2021
1 parent 0dbfd88 commit 7fc1254
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 4 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
2021-06-16
- 3.0.2
- Do not timeout connection if peer sends PING frames.
- Do not assert for MTU probe packet when cancel a path.

2021-06-16
- 3.0.1
- Only force TICK_CLOSE flag after received CONNECTION_CLOSE frame. (issue #292 #281)
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'3.0'
# The full version, including alpha/beta/rc tags
release = u'3.0.1'
release = u'3.0.2'


# -- 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 3
#define LSQUIC_MINOR_VERSION 0
#define LSQUIC_PATCH_VERSION 1
#define LSQUIC_PATCH_VERSION 2

/**
* Engine flags:
Expand Down
5 changes: 5 additions & 0 deletions src/liblsquic/lsquic_full_conn_ietf.c
Original file line number Diff line number Diff line change
Expand Up @@ -5918,6 +5918,11 @@ process_ping_frame (struct ietf_full_conn *conn,
LSQ_DEBUG("received PING");
if (conn->ifc_flags & IFC_SERVER)
log_conn_flow_control(conn);

LSQ_DEBUG("received PING frame, update last progress to %"PRIu64,
conn->ifc_pub.last_tick);
conn->ifc_pub.last_prog = conn->ifc_pub.last_tick;

return 1;
}

Expand Down
5 changes: 3 additions & 2 deletions src/liblsquic/lsquic_send_ctl.c
Original file line number Diff line number Diff line change
Expand Up @@ -3654,8 +3654,9 @@ lsquic_send_ctl_cancel_path_verification (struct lsquic_send_ctl *ctl,
next = TAILQ_NEXT(packet_out, po_next);
if (packet_out->po_path == path)
{
assert(packet_out->po_frame_types
& (QUIC_FTBIT_PATH_CHALLENGE|QUIC_FTBIT_PATH_RESPONSE));
assert((packet_out->po_frame_types
& (QUIC_FTBIT_PATH_CHALLENGE|QUIC_FTBIT_PATH_RESPONSE))
|| packet_out->po_frame_types == QUIC_FTBIT_PADDING);
assert(!(packet_out->po_frame_types & ctl->sc_retx_frames));
send_ctl_maybe_renumber_sched_to_right(ctl, packet_out);
send_ctl_sched_remove(ctl, packet_out);
Expand Down

0 comments on commit 7fc1254

Please sign in to comment.