mirror of
https://github.com/openssl/openssl.git
synced 2024-12-15 06:01:37 +08:00
QUIC MSMT: macOS robustness fixes
Reviewed-by: Matt Caswell <matt@openssl.org> Reviewed-by: Tomas Mraz <tomas@openssl.org> (Merged from https://github.com/openssl/openssl/pull/20856)
This commit is contained in:
parent
faa3a180ef
commit
7ba8f79a0f
@ -625,11 +625,11 @@ static int run_script_worker(struct helper *h, const struct script_op *script,
|
||||
s_stream_id = UINT64_MAX;
|
||||
}
|
||||
|
||||
if (thread_idx < 0) {
|
||||
if (thread_idx < 0)
|
||||
ossl_quic_tserver_tick(h->s);
|
||||
if (connect_started)
|
||||
SSL_tick(h->c_conn);
|
||||
}
|
||||
|
||||
if (thread_idx >= 0 || connect_started)
|
||||
SSL_tick(h->c_conn);
|
||||
|
||||
if (thread_idx >= 0) {
|
||||
/* Only allow certain opcodes on child threads. */
|
||||
|
Loading…
Reference in New Issue
Block a user