diff options
| author | Roman Arutyunyan <arut@nginx.com> | 2023-02-27 14:00:56 +0400 |
|---|---|---|
| committer | Roman Arutyunyan <arut@nginx.com> | 2023-02-27 14:00:56 +0400 |
| commit | 815ef96124176baef4e940c4beaec158305b368a (patch) | |
| tree | ef62d1240eae60059e678eb5801caeffa8f14bba /src/http/ngx_http_request.c | |
| parent | a36ebf7e95baebf445b0973bd270bc009b0b0e9a (diff) | |
| download | nginx-815ef96124176baef4e940c4beaec158305b368a.tar.gz nginx-815ef96124176baef4e940c4beaec158305b368a.tar.bz2 | |
HTTP/3: "quic" parameter of "listen" directive.
Now "listen" directve has a new "quic" parameter which enables QUIC protocol
for the address. Further, to enable HTTP/3, a new directive "http3" is
introduced. The hq-interop protocol is enabled by "http3_hq" as before.
Now application protocol is chosen by ALPN.
Previously used "http3" parameter of "listen" is deprecated.
Diffstat (limited to '')
| -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 8cc3cff24..6cfae3435 100644 --- a/src/http/ngx_http_request.c +++ b/src/http/ngx_http_request.c @@ -325,7 +325,7 @@ ngx_http_init_connection(ngx_connection_t *c) #endif #if (NGX_HTTP_V3) - if (hc->addr_conf->http3) { + if (hc->addr_conf->quic) { ngx_http_v3_init_stream(c); return; } |
