comparison src/event/quic/ngx_event_quic_ssl.c @ 8999:92729be0377b quic

QUIC: do not declare SSL buffering, it's not used. No functional changes.
author Sergey Kandaurov <pluknet@nginx.com>
date Tue, 01 Feb 2022 20:46:32 +0300
parents 30cad5a0931e
children f9c788f3f5cc
comparison
equal deleted inserted replaced
8998:308ac307b3e6 8999:92729be0377b
544 ngx_quic_socket_t *qsock; 544 ngx_quic_socket_t *qsock;
545 ngx_quic_connection_t *qc; 545 ngx_quic_connection_t *qc;
546 546
547 qc = ngx_quic_get_connection(c); 547 qc = ngx_quic_get_connection(c);
548 548
549 if (ngx_ssl_create_connection(qc->conf->ssl, c, NGX_SSL_BUFFER) != NGX_OK) { 549 if (ngx_ssl_create_connection(qc->conf->ssl, c, 0) != NGX_OK) {
550 return NGX_ERROR; 550 return NGX_ERROR;
551 } 551 }
552 552
553 c->ssl->no_wait_shutdown = 1; 553 c->ssl->no_wait_shutdown = 1;
554 554