summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTomas Mraz <tomas@openssl.org>2023-08-09 15:10:10 +0200
committerTomas Mraz <tomas@openssl.org>2023-08-23 17:18:39 +0200
commit68b9a32aa397030d9e49ee1ae84ca1ce6b58efd3 (patch)
treeb10d696fd391db744df4596f3259a3fd09ad4acd
parent8ef63b6ff8301a0139c00df6c40173a63fd2db01 (diff)
Remove TODO(QUIC) about raising errors from ossl_quic_tls_tick()
This was already resolved by https://github.com/openssl/openssl/pull/21547 Reviewed-by: Hugo Landau <hlandau@openssl.org> Reviewed-by: Matt Caswell <matt@openssl.org> (Merged from https://github.com/openssl/openssl/pull/21700)
-rw-r--r--ssl/quic/quic_tls.c7
1 files changed, 0 insertions, 7 deletions
diff --git a/ssl/quic/quic_tls.c b/ssl/quic/quic_tls.c
index d043b8c266..8f104f63e3 100644
--- a/ssl/quic/quic_tls.c
+++ b/ssl/quic/quic_tls.c
@@ -700,13 +700,6 @@ int ossl_quic_tls_tick(QUIC_TLS *qtls)
const unsigned char *alpn;
unsigned int alpnlen;
- /*
- * TODO(QUIC): There are various calls here that could fail and ordinarily
- * would result in an ERR_raise call - but "tick" calls aren't supposed to
- * fail "loudly" - so its unclear how we will report these errors. The
- * ERR_raise calls are omitted from this function for now.
- */
-
if (qtls->inerror)
return 0;