mirror of
https://gitea.invidious.io/iv-org/litespeed-quic.git
synced 2024-08-15 00:53:43 +00:00
Release 2.26.0
- [OPTIMIZATION] Adjust packet reordering threshold when spurious losses are detected. - [API] Pass pointer to local sockaddr to ea_get_ssl_ctx() callback.
This commit is contained in:
parent
7f96c7c7f3
commit
fcbdf653b6
11 changed files with 98 additions and 25 deletions
|
@ -39,7 +39,7 @@
|
|||
|
||||
static int prog_stopped;
|
||||
|
||||
static SSL_CTX * get_ssl_ctx (void *);
|
||||
static SSL_CTX * get_ssl_ctx (void *, const struct sockaddr *);
|
||||
|
||||
static const struct lsquic_packout_mem_if pmi = {
|
||||
.pmi_allocate = pba_allocate,
|
||||
|
@ -417,7 +417,7 @@ prog_init_client (struct prog *prog)
|
|||
|
||||
|
||||
static SSL_CTX *
|
||||
get_ssl_ctx (void *peer_ctx)
|
||||
get_ssl_ctx (void *peer_ctx, const struct sockaddr *unused)
|
||||
{
|
||||
const struct service_port *const sport = peer_ctx;
|
||||
return sport->sp_prog->prog_ssl_ctx;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue