summaryrefslogtreecommitdiff
path: root/ssl
diff options
context:
space:
mode:
authorHugo Landau <hlandau@openssl.org>2023-01-24 10:34:00 +0000
committerHugo Landau <hlandau@openssl.org>2023-01-27 14:19:15 +0000
commit1d40b151e252490e2187235d50228119c2b6f6d5 (patch)
treed9c9634e915a7a9fbb5869ba62badb60fe12870e /ssl
parentc8e7f842b002f6c5081ff1519a9fe40d81cdeadd (diff)
downloadopenssl-new-1d40b151e252490e2187235d50228119c2b6f6d5.tar.gz
QUIC FIN Support: Various fixes
Reviewed-by: Tomas Mraz <tomas@openssl.org> Reviewed-by: Matt Caswell <matt@openssl.org> (Merged from https://github.com/openssl/openssl/pull/19897)
Diffstat (limited to 'ssl')
-rw-r--r--ssl/quic/quic_impl.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/ssl/quic/quic_impl.c b/ssl/quic/quic_impl.c
index 8fe5575813..5448e32e73 100644
--- a/ssl/quic/quic_impl.c
+++ b/ssl/quic/quic_impl.c
@@ -504,7 +504,7 @@ int ossl_quic_conn_shutdown(QUIC_CONNECTION *qc, uint64_t flags,
ossl_quic_channel_local_close(qc->ch,
args != NULL ? args->quic_error_code : 0);
- /* TODO(QUIC): !SSL_SHUTDOWN_FLAG_IMMEDIATE */
+ /* TODO(QUIC): !SSL_SHUTDOWN_FLAG_NO_STREAM_FLUSH */
if (ossl_quic_channel_is_terminated(qc->ch))
return 1;
@@ -757,7 +757,6 @@ int ossl_quic_accept(SSL *s)
* (BIO/)SSL_write => ossl_quic_write
* SSL_pending => ossl_quic_pending
* SSL_stream_conclude => ossl_quic_conn_stream_conclude
- *
*/
/* SSL_get_error */