comparison src/stream/ngx_stream_handler.c @ 8630:279ad36f2f4b quic

QUIC: renamed c->qs to c->quic.
author Roman Arutyunyan <arut@nginx.com>
date Tue, 10 Nov 2020 19:40:00 +0000
parents bed310672f39
children e96c20b6f655
comparison
equal deleted inserted replaced
8629:feec2cc762f6 8630:279ad36f2f4b
118 #if (NGX_STREAM_QUIC) 118 #if (NGX_STREAM_QUIC)
119 119
120 if (addr_conf->quic) { 120 if (addr_conf->quic) {
121 ngx_quic_conf_t *qcf; 121 ngx_quic_conf_t *qcf;
122 122
123 if (c->qs == NULL) { 123 if (c->quic == NULL) {
124 c->log->connection = c->number; 124 c->log->connection = c->number;
125 125
126 qcf = ngx_stream_get_module_srv_conf(addr_conf->ctx, 126 qcf = ngx_stream_get_module_srv_conf(addr_conf->ctx,
127 ngx_stream_quic_module); 127 ngx_stream_quic_module);
128 ngx_quic_run(c, qcf); 128 ngx_quic_run(c, qcf);