diff options
author | Sergey Kandaurov <pluknet@nginx.com> | 2022-02-01 20:46:32 +0300 |
---|---|---|
committer | Sergey Kandaurov <pluknet@nginx.com> | 2022-02-01 20:46:32 +0300 |
commit | 5a79f55dab7f515eca56639d3bff05b1376701d5 (patch) | |
tree | bc1d9540390889a084a5352742ade2c9a16d898e /src | |
parent | b9e398dc7b397d8684340c73720e470a731657ec (diff) | |
download | nginx-5a79f55dab7f515eca56639d3bff05b1376701d5.tar.gz nginx-5a79f55dab7f515eca56639d3bff05b1376701d5.zip |
QUIC: do not declare SSL buffering, it's not used.
No functional changes.
Diffstat (limited to 'src')
-rw-r--r-- | src/event/quic/ngx_event_quic_ssl.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/event/quic/ngx_event_quic_ssl.c b/src/event/quic/ngx_event_quic_ssl.c index a10fe197b..126758253 100644 --- a/src/event/quic/ngx_event_quic_ssl.c +++ b/src/event/quic/ngx_event_quic_ssl.c @@ -546,7 +546,7 @@ ngx_quic_init_connection(ngx_connection_t *c) qc = ngx_quic_get_connection(c); - if (ngx_ssl_create_connection(qc->conf->ssl, c, NGX_SSL_BUFFER) != NGX_OK) { + if (ngx_ssl_create_connection(qc->conf->ssl, c, 0) != NGX_OK) { return NGX_ERROR; } |