summaryrefslogtreecommitdiffstats
path: root/ssl/bio_ssl.c
diff options
context:
space:
mode:
authorHugo Landau <hlandau@openssl.org>2024-01-19 14:52:44 +0000
committerHugo Landau <hlandau@openssl.org>2024-01-23 14:20:06 +0000
commit113be15a5ee9aa79a70098e27071c46175cbbb18 (patch)
treedbe4e9e55e8edd91c4d2b0d033f6596a664bea9b /ssl/bio_ssl.c
parent2695f7b19b3dba8a89b7081e2427cdf2f66d232f (diff)
QUIC APL: Implement optimised FIN API
Reviewed-by: Neil Horman <nhorman@openssl.org> Reviewed-by: Matt Caswell <matt@openssl.org> (Merged from https://github.com/openssl/openssl/pull/23343)
Diffstat (limited to 'ssl/bio_ssl.c')
-rw-r--r--ssl/bio_ssl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/ssl/bio_ssl.c b/ssl/bio_ssl.c
index 68dd48a5ef..44b05ad27d 100644
--- a/ssl/bio_ssl.c
+++ b/ssl/bio_ssl.c
@@ -174,7 +174,7 @@ static int ssl_write(BIO *b, const char *buf, size_t size, size_t *written)
BIO_clear_retry_flags(b);
- ret = ssl_write_internal(ssl, buf, size, written);
+ ret = ssl_write_internal(ssl, buf, size, 0, written);
switch (SSL_get_error(ssl, ret)) {
case SSL_ERROR_NONE: