mirror of
https://github.com/nginx/nginx.git
synced 2024-11-24 04:49:01 +08:00
SSL: disabled shutdown when there are buffered data.
This fixes "SSL_shutdown() failed (SSL: ... bad write retry)" errors as observed on the second SSL_shutdown() call after SSL shutdown fixes in 09fb2135a589 (1.19.2), notably when HTTP/2 connections are closed due to read timeouts while there are incomplete writes.
This commit is contained in:
parent
f6c28f93af
commit
e9a8612c13
@ -2805,7 +2805,7 @@ ngx_ssl_shutdown(ngx_connection_t *c)
|
|||||||
return NGX_OK;
|
return NGX_OK;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (c->timedout || c->error) {
|
if (c->timedout || c->error || c->buffered) {
|
||||||
mode = SSL_RECEIVED_SHUTDOWN|SSL_SENT_SHUTDOWN;
|
mode = SSL_RECEIVED_SHUTDOWN|SSL_SENT_SHUTDOWN;
|
||||||
SSL_set_quiet_shutdown(c->ssl->connection, 1);
|
SSL_set_quiet_shutdown(c->ssl->connection, 1);
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user