mirror of
https://github.com/openssl/openssl.git
synced 2025-03-31 20:10:45 +08:00
Stop the quicserver if the handshake or receiving the request fails
Previously we entered an infinite loop if these things failed. Reviewed-by: Paul Dale <pauli@openssl.org> Reviewed-by: Tomas Mraz <tomas@openssl.org> (Merged from https://github.com/openssl/openssl/pull/22557)
This commit is contained in:
parent
dfb26e03c2
commit
ddf84fc47e
@ -231,6 +231,11 @@ int main(int argc, char *argv[])
|
||||
while(!ossl_quic_tserver_is_handshake_confirmed(qtserv)) {
|
||||
wait_for_activity(qtserv);
|
||||
ossl_quic_tserver_tick(qtserv);
|
||||
if (ossl_quic_tserver_is_terminated(qtserv)) {
|
||||
BIO_printf(bio_err, "Failed waiting for handshake completion\n");
|
||||
ret = EXIT_FAILURE;
|
||||
goto end;
|
||||
}
|
||||
}
|
||||
|
||||
for (;; respnum++) {
|
||||
@ -257,6 +262,11 @@ int main(int argc, char *argv[])
|
||||
wait_for_activity(qtserv);
|
||||
|
||||
ossl_quic_tserver_tick(qtserv);
|
||||
if (ossl_quic_tserver_is_terminated(qtserv)) {
|
||||
BIO_printf(bio_err, "Failed reading request\n");
|
||||
ret = EXIT_FAILURE;
|
||||
goto end;
|
||||
}
|
||||
|
||||
if (ossl_quic_tserver_read(qtserv, streamid, reqbuf + reqbytes,
|
||||
sizeof(reqbuf) - reqbytes,
|
||||
|
Loading…
x
Reference in New Issue
Block a user