diff options
| author | Roman Arutyunyan <arut@nginx.com> | 2020-07-21 23:08:23 +0300 |
|---|---|---|
| committer | Roman Arutyunyan <arut@nginx.com> | 2020-07-21 23:08:23 +0300 |
| commit | 3073ad1381c4d8f8aae4501d66497164167b2081 (patch) | |
| tree | cf64dcd8cd09652aa887a727c860f67555796091 /src/http/ngx_http_request.c | |
| parent | 36f2873f6b0d8512c053935614fcc6ae9d969858 (diff) | |
| download | nginx-3073ad1381c4d8f8aae4501d66497164167b2081.tar.gz nginx-3073ad1381c4d8f8aae4501d66497164167b2081.tar.bz2 | |
QUIC: eliminated connection handler argument in ngx_quic_run().
Now c->listening->handler() is called instead.
Diffstat (limited to 'src/http/ngx_http_request.c')
| -rw-r--r-- | src/http/ngx_http_request.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/http/ngx_http_request.c b/src/http/ngx_http_request.c index bfa8e11c5..9b6d461e0 100644 --- a/src/http/ngx_http_request.c +++ b/src/http/ngx_http_request.c @@ -336,7 +336,7 @@ ngx_http_init_connection(ngx_connection_t *c) sscf = ngx_http_get_module_srv_conf(hc->conf_ctx, ngx_http_ssl_module); - ngx_quic_run(c, &sscf->ssl, qcf, ngx_http_init_connection); + ngx_quic_run(c, &sscf->ssl, qcf); return; } } |
