mirror of
https://gitea.invidious.io/iv-org/litespeed-quic.git
synced 2024-08-15 00:53:43 +00:00
Release 2.5.2
- [BUGFIX] argument order to gQUIC client constructor. Regression introduced in 2.5.0. - [BUGFIX] split buffered packet error recovery: destroy the correct packet.
This commit is contained in:
parent
1c9cee3ed5
commit
75a7a2a36a
4 changed files with 11 additions and 4 deletions
|
@ -1,3 +1,10 @@
|
||||||
|
2019-11-07
|
||||||
|
- 2.5.2
|
||||||
|
- [BUGFIX] argument order to gQUIC client constructor. Regression
|
||||||
|
introduced in 2.5.0.
|
||||||
|
- [BUGFIX] split buffered packet error recovery: destroy the correct
|
||||||
|
packet.
|
||||||
|
|
||||||
2019-11-04
|
2019-11-04
|
||||||
- 2.5.1
|
- 2.5.1
|
||||||
- [BUGFIX] Fix double-free when emptying a packet number space.
|
- [BUGFIX] Fix double-free when emptying a packet number space.
|
||||||
|
|
|
@ -25,7 +25,7 @@ extern "C" {
|
||||||
|
|
||||||
#define LSQUIC_MAJOR_VERSION 2
|
#define LSQUIC_MAJOR_VERSION 2
|
||||||
#define LSQUIC_MINOR_VERSION 5
|
#define LSQUIC_MINOR_VERSION 5
|
||||||
#define LSQUIC_PATCH_VERSION 1
|
#define LSQUIC_PATCH_VERSION 2
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Engine flags:
|
* Engine flags:
|
||||||
|
|
|
@ -1516,8 +1516,8 @@ lsquic_engine_connect (lsquic_engine_t *engine, enum lsquic_version version,
|
||||||
flags, hostname, max_packet_size,
|
flags, hostname, max_packet_size,
|
||||||
is_ipv4, zero_rtt, zero_rtt_len, token, token_sz);
|
is_ipv4, zero_rtt, zero_rtt_len, token, token_sz);
|
||||||
else
|
else
|
||||||
conn = lsquic_gquic_full_conn_client_new(&engine->pub, flags,
|
conn = lsquic_gquic_full_conn_client_new(&engine->pub, versions,
|
||||||
versions, hostname, max_packet_size, is_ipv4,
|
flags, hostname, max_packet_size, is_ipv4,
|
||||||
zero_rtt, zero_rtt_len);
|
zero_rtt, zero_rtt_len);
|
||||||
if (!conn)
|
if (!conn)
|
||||||
goto err;
|
goto err;
|
||||||
|
|
|
@ -2418,7 +2418,7 @@ split_buffered_packet (lsquic_send_ctl_t *ctl,
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
send_ctl_destroy_packet(ctl, packet_out);
|
send_ctl_destroy_packet(ctl, new_packet_out);
|
||||||
return -1;
|
return -1;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue