aboutsummaryrefslogtreecommitdiff
path: root/src/http/ngx_http_request.c
diff options
context:
space:
mode:
authorSergey Kandaurov <pluknet@nginx.com>2020-03-23 20:48:34 +0300
committerSergey Kandaurov <pluknet@nginx.com>2020-03-23 20:48:34 +0300
commitf20af3dabca75b1f57f5c72a0e45e7251762b43c (patch)
tree8358e67ffe5d4e0ddd26e3a9bc7bdd3123a13b88 /src/http/ngx_http_request.c
parent5ac5e51fdfe68e8b11f8c7abd2ce361062f68e54 (diff)
downloadnginx-f20af3dabca75b1f57f5c72a0e45e7251762b43c.tar.gz
nginx-f20af3dabca75b1f57f5c72a0e45e7251762b43c.zip
Fixed client certificate verification.
For ngx_http_process_request() part to work, this required to set both r->http_connection->ssl and c->ssl on a QUIC stream. To avoid damaging global SSL object, ngx_ssl_shutdown() is managed to ignore QUIC streams.
Diffstat (limited to 'src/http/ngx_http_request.c')
-rw-r--r--src/http/ngx_http_request.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/http/ngx_http_request.c b/src/http/ngx_http_request.c
index acd708cf6..890e5374b 100644
--- a/src/http/ngx_http_request.c
+++ b/src/http/ngx_http_request.c
@@ -225,6 +225,7 @@ ngx_http_init_connection(ngx_connection_t *c)
if (c->type == SOCK_DGRAM) {
hc = ngx_pcalloc(c->pool, sizeof(ngx_http_v3_connection_t));
hc->quic = 1;
+ hc->ssl = 1;
} else
#endif