summaryrefslogtreecommitdiffhomepage
path: root/src/stream/ngx_stream_handler.c
diff options
context:
space:
mode:
authorRoman Arutyunyan <arut@nginx.com>2020-07-21 23:08:23 +0300
committerRoman Arutyunyan <arut@nginx.com>2020-07-21 23:08:23 +0300
commit3073ad1381c4d8f8aae4501d66497164167b2081 (patch)
treecf64dcd8cd09652aa887a727c860f67555796091 /src/stream/ngx_stream_handler.c
parent36f2873f6b0d8512c053935614fcc6ae9d969858 (diff)
downloadnginx-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 '')
-rw-r--r--src/stream/ngx_stream_handler.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/stream/ngx_stream_handler.c b/src/stream/ngx_stream_handler.c
index 672de85ac..2b0848a67 100644
--- a/src/stream/ngx_stream_handler.c
+++ b/src/stream/ngx_stream_handler.c
@@ -129,7 +129,7 @@ ngx_stream_init_connection(ngx_connection_t *c)
scf = ngx_stream_get_module_srv_conf(addr_conf->ctx,
ngx_stream_ssl_module);
- ngx_quic_run(c, &scf->ssl, qcf, ngx_stream_init_connection);
+ ngx_quic_run(c, &scf->ssl, qcf);
return;
}
}