Skip to content

Commit

Permalink
QUIC PORT: Ensure reactor waits for listening port correctly
Browse files Browse the repository at this point in the history
Reviewed-by: Neil Horman <nhorman@openssl.org>
Reviewed-by: Tomas Mraz <tomas@openssl.org>
(Merged from #24037)
  • Loading branch information
hlandau committed Apr 11, 2024
1 parent fc4ceab commit 19edf16
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
1 change: 0 additions & 1 deletion ssl/quic/quic_impl.c
Original file line number Diff line number Diff line change
Expand Up @@ -364,7 +364,6 @@ static int expect_quic_as(const SSL *s, QCTX *ctx, uint32_t flags)
return ok;
}


static int expect_quic_cs(const SSL *s, QCTX *ctx)
{
return expect_quic_as(s, ctx, QCTX_C | QCTX_S);
Expand Down
2 changes: 1 addition & 1 deletion ssl/quic/quic_port.c
Original file line number Diff line number Diff line change
Expand Up @@ -475,7 +475,7 @@ void ossl_quic_port_subtick(QUIC_PORT *port, QUIC_TICK_RESULT *res,
{
QUIC_CHANNEL *ch;

res->net_read_desired = 0;
res->net_read_desired = ossl_quic_port_is_running(port);
res->net_write_desired = 0;
res->tick_deadline = ossl_time_infinite();

Expand Down

0 comments on commit 19edf16

Please sign in to comment.