diff options
| author | Sergey Kandaurov <pluknet@nginx.com> | 2022-02-14 10:14:07 +0300 |
|---|---|---|
| committer | Sergey Kandaurov <pluknet@nginx.com> | 2022-02-14 10:14:07 +0300 |
| commit | a767450093200c76dba8851a9453f13296dd6371 (patch) | |
| tree | d8defe592e6ce44e1dd79ebbd6915bc215855403 /src/event/ngx_event_openssl.c | |
| parent | 45a8ca0e7a1ae7ec4f7769919e9f3e007113d5ad (diff) | |
| parent | 828fb94e1dbe1c433edd39147ba085c4622c99ed (diff) | |
| download | nginx-a767450093200c76dba8851a9453f13296dd6371.tar.gz nginx-a767450093200c76dba8851a9453f13296dd6371.tar.bz2 | |
Merged with the default branch.
Diffstat (limited to 'src/event/ngx_event_openssl.c')
| -rw-r--r-- | src/event/ngx_event_openssl.c | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/event/ngx_event_openssl.c b/src/event/ngx_event_openssl.c index 60efdbfa7..5d98f2dcd 100644 --- a/src/event/ngx_event_openssl.c +++ b/src/event/ngx_event_openssl.c @@ -3392,6 +3392,12 @@ ngx_ssl_connection_error(ngx_connection_t *c, int sslerr, ngx_err_t err, #endif || n == SSL_R_WRONG_VERSION_NUMBER /* 267 */ || n == SSL_R_DECRYPTION_FAILED_OR_BAD_RECORD_MAC /* 281 */ +#ifdef SSL_R_APPLICATION_DATA_AFTER_CLOSE_NOTIFY + || n == SSL_R_APPLICATION_DATA_AFTER_CLOSE_NOTIFY /* 291 */ +#endif +#ifdef SSL_R_APPLICATION_DATA_ON_SHUTDOWN + || n == SSL_R_APPLICATION_DATA_ON_SHUTDOWN /* 291 */ +#endif #ifdef SSL_R_RENEGOTIATE_EXT_TOO_LONG || n == SSL_R_RENEGOTIATE_EXT_TOO_LONG /* 335 */ || n == SSL_R_RENEGOTIATION_ENCODING_ERR /* 336 */ |
