QUIC: do not declare SSL buffering, it's not used.

No functional changes.
This commit is contained in:
Sergey Kandaurov 2022-02-01 20:46:32 +03:00
parent e16352881a
commit afe8ad39f0
1 changed files with 1 additions and 1 deletions

View File

@ -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;
}