mirror of
https://gitea.invidious.io/iv-org/litespeed-quic.git
synced 2024-08-15 00:53:43 +00:00
Release 3.0.2
This commit is contained in:
parent
0dbfd88edd
commit
7fc1254850
5 changed files with 15 additions and 4 deletions
|
@ -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
|
2021-06-16
|
||||||
- 3.0.1
|
- 3.0.1
|
||||||
- Only force TICK_CLOSE flag after received CONNECTION_CLOSE frame. (issue #292 #281)
|
- Only force TICK_CLOSE flag after received CONNECTION_CLOSE frame. (issue #292 #281)
|
||||||
|
|
|
@ -26,7 +26,7 @@ author = u'LiteSpeed Technologies'
|
||||||
# The short X.Y version
|
# The short X.Y version
|
||||||
version = u'3.0'
|
version = u'3.0'
|
||||||
# The full version, including alpha/beta/rc tags
|
# The full version, including alpha/beta/rc tags
|
||||||
release = u'3.0.1'
|
release = u'3.0.2'
|
||||||
|
|
||||||
|
|
||||||
# -- General configuration ---------------------------------------------------
|
# -- General configuration ---------------------------------------------------
|
||||||
|
|
|
@ -25,7 +25,7 @@ extern "C" {
|
||||||
|
|
||||||
#define LSQUIC_MAJOR_VERSION 3
|
#define LSQUIC_MAJOR_VERSION 3
|
||||||
#define LSQUIC_MINOR_VERSION 0
|
#define LSQUIC_MINOR_VERSION 0
|
||||||
#define LSQUIC_PATCH_VERSION 1
|
#define LSQUIC_PATCH_VERSION 2
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Engine flags:
|
* Engine flags:
|
||||||
|
|
|
@ -5918,6 +5918,11 @@ process_ping_frame (struct ietf_full_conn *conn,
|
||||||
LSQ_DEBUG("received PING");
|
LSQ_DEBUG("received PING");
|
||||||
if (conn->ifc_flags & IFC_SERVER)
|
if (conn->ifc_flags & IFC_SERVER)
|
||||||
log_conn_flow_control(conn);
|
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;
|
return 1;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -3654,8 +3654,9 @@ lsquic_send_ctl_cancel_path_verification (struct lsquic_send_ctl *ctl,
|
||||||
next = TAILQ_NEXT(packet_out, po_next);
|
next = TAILQ_NEXT(packet_out, po_next);
|
||||||
if (packet_out->po_path == path)
|
if (packet_out->po_path == path)
|
||||||
{
|
{
|
||||||
assert(packet_out->po_frame_types
|
assert((packet_out->po_frame_types
|
||||||
& (QUIC_FTBIT_PATH_CHALLENGE|QUIC_FTBIT_PATH_RESPONSE));
|
& (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));
|
assert(!(packet_out->po_frame_types & ctl->sc_retx_frames));
|
||||||
send_ctl_maybe_renumber_sched_to_right(ctl, packet_out);
|
send_ctl_maybe_renumber_sched_to_right(ctl, packet_out);
|
||||||
send_ctl_sched_remove(ctl, packet_out);
|
send_ctl_sched_remove(ctl, packet_out);
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue