diff options
| author | Roman Arutyunyan <arut@nginx.com> | 2020-11-27 17:46:21 +0000 |
|---|---|---|
| committer | Roman Arutyunyan <arut@nginx.com> | 2020-11-27 17:46:21 +0000 |
| commit | 4b440cbf97af3ffe0ab31cb083fb1ce5b0fb5f89 (patch) | |
| tree | 01fa6fcb9fad6bb1e29e14597fa0aa22c04cb201 /auto/modules | |
| parent | 3b8dbfcab4643fbfd3f276d3e9302b406e07f7fc (diff) | |
| download | nginx-4b440cbf97af3ffe0ab31cb083fb1ce5b0fb5f89.tar.gz nginx-4b440cbf97af3ffe0ab31cb083fb1ce5b0fb5f89.tar.bz2 | |
HTTP/3: introduced ngx_http_v3_filter.
The filter is responsible for creating HTTP/3 response header and body.
The change removes differences to the default branch for
ngx_http_chunked_filter_module and ngx_http_header_filter_module.
Diffstat (limited to 'auto/modules')
| -rw-r--r-- | auto/modules | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/auto/modules b/auto/modules index 205023d3a..3f2430b62 100644 --- a/auto/modules +++ b/auto/modules @@ -119,6 +119,7 @@ if [ $HTTP = YES ]; then # ngx_http_header_filter # ngx_http_chunked_filter # ngx_http_v2_filter + # ngx_http_v3_filter # ngx_http_range_header_filter # ngx_http_gzip_filter # ngx_http_postpone_filter @@ -151,6 +152,7 @@ if [ $HTTP = YES ]; then ngx_http_header_filter_module \ ngx_http_chunked_filter_module \ ngx_http_v2_filter_module \ + ngx_http_v3_filter_module \ ngx_http_range_header_filter_module \ ngx_http_gzip_filter_module \ ngx_http_postpone_filter_module \ @@ -212,6 +214,17 @@ if [ $HTTP = YES ]; then . auto/module fi + if [ $HTTP_V3 = YES ]; then + ngx_module_name=ngx_http_v3_filter_module + ngx_module_incs= + ngx_module_deps= + ngx_module_srcs=src/http/v3/ngx_http_v3_filter_module.c + ngx_module_libs= + ngx_module_link=$HTTP_V3 + + . auto/module + fi + if :; then ngx_module_name=ngx_http_range_header_filter_module ngx_module_incs= |
