diff options
| author | Roman Arutyunyan <arut@nginx.com> | 2020-03-13 19:36:33 +0300 |
|---|---|---|
| committer | Roman Arutyunyan <arut@nginx.com> | 2020-03-13 19:36:33 +0300 |
| commit | 7739b6073b11086d9a3dc4b9744418070e182c33 (patch) | |
| tree | 7a16aeff28275722458173e83e2f6dd1889cc44a /auto/modules | |
| parent | 365b77b58732a708168c995c7956f50d110fee33 (diff) | |
| download | nginx-7739b6073b11086d9a3dc4b9744418070e182c33.tar.gz nginx-7739b6073b11086d9a3dc4b9744418070e182c33.tar.bz2 | |
HTTP/3.
Diffstat (limited to '')
| -rw-r--r-- | auto/modules | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/auto/modules b/auto/modules index b612e6f9f..0232fba5e 100644 --- a/auto/modules +++ b/auto/modules @@ -403,6 +403,27 @@ if [ $HTTP = YES ]; then ngx_module_type=HTTP + if [ $HTTP_V3 = YES ]; then + have=NGX_HTTP_V3 . auto/have + have=NGX_HTTP_HEADERS . auto/have + + # XXX for Huffman + HTTP_V2=YES + + ngx_module_name=ngx_http_v3_module + ngx_module_incs=src/http/v3 + ngx_module_deps=src/http/v3/ngx_http_v3.h + ngx_module_srcs="src/http/v3/ngx_http_v3.c \ + src/http/v3/ngx_http_v3_tables.c \ + src/http/v3/ngx_http_v3_streams.c \ + src/http/v3/ngx_http_v3_request.c \ + src/http/v3/ngx_http_v3_module.c" + ngx_module_libs= + ngx_module_link=$HTTP_V3 + + . auto/module + fi + if [ $HTTP_V2 = YES ]; then have=NGX_HTTP_V2 . auto/have have=NGX_HTTP_HEADERS . auto/have |
