comparison src/http/ngx_http_request.c @ 8001:2da9c4fddd44 quic

QUIC: eliminated connection handler argument in ngx_quic_run(). Now c->listening->handler() is called instead.
author Roman Arutyunyan <arut@nginx.com>
date Tue, 21 Jul 2020 23:08:23 +0300
parents 0d2b2664b41c
children d41a0cafacff
comparison
equal deleted inserted replaced
8000:893b3313f53c 8001:2da9c4fddd44
334 qcf = ngx_http_get_module_srv_conf(hc->conf_ctx, 334 qcf = ngx_http_get_module_srv_conf(hc->conf_ctx,
335 ngx_http_quic_module); 335 ngx_http_quic_module);
336 sscf = ngx_http_get_module_srv_conf(hc->conf_ctx, 336 sscf = ngx_http_get_module_srv_conf(hc->conf_ctx,
337 ngx_http_ssl_module); 337 ngx_http_ssl_module);
338 338
339 ngx_quic_run(c, &sscf->ssl, qcf, ngx_http_init_connection); 339 ngx_quic_run(c, &sscf->ssl, qcf);
340 return; 340 return;
341 } 341 }
342 } 342 }
343 343
344 #endif 344 #endif