diff options
author | Roman Arutyunyan <arut@nginx.com> | 2020-07-21 23:09:22 +0300 |
---|---|---|
committer | Roman Arutyunyan <arut@nginx.com> | 2020-07-21 23:09:22 +0300 |
commit | b813b9ec358862a2a94868bc057420d6eca5c05d (patch) | |
tree | 57c250cf526c85f6d1a7889f65110daa9cb7e57b /src/http/ngx_http_request.h | |
parent | a305de07e934dd1ff21111d0314821a34880ab13 (diff) | |
download | nginx-b813b9ec358862a2a94868bc057420d6eca5c05d.tar.gz nginx-b813b9ec358862a2a94868bc057420d6eca5c05d.zip |
QUIC: added "quic" listen parameter.
The parameter allows processing HTTP/0.9-2 over QUIC.
Also, introduced ngx_http_quic_module and moved QUIC settings there
Diffstat (limited to 'src/http/ngx_http_request.h')
-rw-r--r-- | src/http/ngx_http_request.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/http/ngx_http_request.h b/src/http/ngx_http_request.h index 1994000a4..3d33d93d4 100644 --- a/src/http/ngx_http_request.h +++ b/src/http/ngx_http_request.h @@ -324,7 +324,6 @@ typedef struct { ngx_chain_t *free; unsigned ssl:1; - unsigned quic:1; unsigned proxy_protocol:1; } ngx_http_connection_t; |