diff options
| author | Roman Arutyunyan <arut@nginx.com> | 2020-07-21 23:08:39 +0300 |
|---|---|---|
| committer | Roman Arutyunyan <arut@nginx.com> | 2020-07-21 23:08:39 +0300 |
| commit | 36f2873f6b0d8512c053935614fcc6ae9d969858 (patch) | |
| tree | 5d50f945509b360aeeca15487cb9d28f6a9b09e1 /auto/modules | |
| parent | b813b9ec358862a2a94868bc057420d6eca5c05d (diff) | |
| download | nginx-36f2873f6b0d8512c053935614fcc6ae9d969858.tar.gz nginx-36f2873f6b0d8512c053935614fcc6ae9d969858.tar.bz2 | |
QUIC: added "quic" listen parameter in Stream.
Also, introduced ngx_stream_quic_module.
Diffstat (limited to 'auto/modules')
| -rw-r--r-- | auto/modules | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/auto/modules b/auto/modules index 2bcc06e62..d213fb451 100644 --- a/auto/modules +++ b/auto/modules @@ -1065,6 +1065,20 @@ if [ $STREAM != NO ]; then ngx_module_incs= + if [ $STREAM_QUIC = YES ]; then + USE_OPENSSL_QUIC=YES + have=NGX_STREAM_QUIC . auto/have + STREAM_SSL=YES + + ngx_module_name=ngx_stream_quic_module + ngx_module_deps=src/stream/ngx_stream_quic_module.h + ngx_module_srcs=src/stream/ngx_stream_quic_module.c + ngx_module_libs= + ngx_module_link=$STREAM_QUIC + + . auto/module + fi + if [ $STREAM_SSL = YES ]; then USE_OPENSSL=YES have=NGX_STREAM_SSL . auto/have |
