summaryrefslogtreecommitdiffstats
path: root/ssl
diff options
context:
space:
mode:
authorTomas Mraz <tomas@openssl.org>2023-10-17 08:58:22 +0200
committerMatt Caswell <matt@openssl.org>2023-10-20 16:29:18 +0100
commit8e520d2714abf4c6254ceec24b57f238433541ee (patch)
tree3ae242d2f2cddc1796082a0b3b1354b477305bf9 /ssl
parent5516d20226c496c2b22fa741698b4d48dad0428f (diff)
Postpone two TODO(QUIC) items appropriately
The one in ch_rx_handle_packet() is a tuning thing -> QUIC FUTURE The one in ossl_quic_tserver_shutdown() is a server thing -> QUIC SERVER Reviewed-by: Hugo Landau <hlandau@openssl.org> Reviewed-by: Matt Caswell <matt@openssl.org> (Merged from https://github.com/openssl/openssl/pull/22408)
Diffstat (limited to 'ssl')
-rw-r--r--ssl/quic/quic_channel.c2
-rw-r--r--ssl/quic/quic_tserver.c2
2 files changed, 2 insertions, 2 deletions
diff --git a/ssl/quic/quic_channel.c b/ssl/quic/quic_channel.c
index 0462fd2411..3b9993b96a 100644
--- a/ssl/quic/quic_channel.c
+++ b/ssl/quic/quic_channel.c
@@ -2302,7 +2302,7 @@ static void ch_rx_handle_packet(QUIC_CHANNEL *ch)
* non-zero Token Length field MUST either discard the packet or
* generate a connection error of type PROTOCOL_VIOLATION.
*
- * TODO(QUIC): consider the implications of RFC 9000 s. 10.2.3
+ * TODO(QUIC FUTURE): consider the implications of RFC 9000 s. 10.2.3
* Immediate Close during the Handshake:
* However, at the cost of reducing feedback about
* errors for legitimate peers, some forms of denial of
diff --git a/ssl/quic/quic_tserver.c b/ssl/quic/quic_tserver.c
index 3630577e70..3fc51b4a77 100644
--- a/ssl/quic/quic_tserver.c
+++ b/ssl/quic/quic_tserver.c
@@ -508,7 +508,7 @@ int ossl_quic_tserver_shutdown(QUIC_TSERVER *srv, uint64_t app_error_code)
{
ossl_quic_channel_local_close(srv->ch, app_error_code, NULL);
- /* TODO(QUIC): !SSL_SHUTDOWN_FLAG_NO_STREAM_FLUSH */
+ /* TODO(QUIC SERVER): !SSL_SHUTDOWN_FLAG_NO_STREAM_FLUSH */
if (ossl_quic_channel_is_terminated(srv->ch))
return 1;