comparison auto/options @ 8482:893b3313f53c quic

QUIC: added "quic" listen parameter in Stream. Also, introduced ngx_stream_quic_module.
author Roman Arutyunyan <arut@nginx.com>
date Tue, 21 Jul 2020 23:08:39 +0300
parents 0d2b2664b41c
children 0875101c08f7
comparison
equal deleted inserted replaced
8481:0d2b2664b41c 8482:893b3313f53c
116 MAIL_IMAP=YES 116 MAIL_IMAP=YES
117 MAIL_SMTP=YES 117 MAIL_SMTP=YES
118 118
119 STREAM=NO 119 STREAM=NO
120 STREAM_SSL=NO 120 STREAM_SSL=NO
121 STREAM_QUIC=NO
121 STREAM_REALIP=NO 122 STREAM_REALIP=NO
122 STREAM_LIMIT_CONN=YES 123 STREAM_LIMIT_CONN=YES
123 STREAM_ACCESS=YES 124 STREAM_ACCESS=YES
124 STREAM_GEO=YES 125 STREAM_GEO=YES
125 STREAM_GEOIP=NO 126 STREAM_GEOIP=NO
313 --without-mail_smtp_module) MAIL_SMTP=NO ;; 314 --without-mail_smtp_module) MAIL_SMTP=NO ;;
314 315
315 --with-stream) STREAM=YES ;; 316 --with-stream) STREAM=YES ;;
316 --with-stream=dynamic) STREAM=DYNAMIC ;; 317 --with-stream=dynamic) STREAM=DYNAMIC ;;
317 --with-stream_ssl_module) STREAM_SSL=YES ;; 318 --with-stream_ssl_module) STREAM_SSL=YES ;;
319 --with-stream_quic_module) STREAM_QUIC=YES ;;
318 --with-stream_realip_module) STREAM_REALIP=YES ;; 320 --with-stream_realip_module) STREAM_REALIP=YES ;;
319 --with-stream_geoip_module) STREAM_GEOIP=YES ;; 321 --with-stream_geoip_module) STREAM_GEOIP=YES ;;
320 --with-stream_geoip_module=dynamic) 322 --with-stream_geoip_module=dynamic)
321 STREAM_GEOIP=DYNAMIC ;; 323 STREAM_GEOIP=DYNAMIC ;;
322 --with-stream_ssl_preread_module) 324 --with-stream_ssl_preread_module)
532 --without-mail_smtp_module disable ngx_mail_smtp_module 534 --without-mail_smtp_module disable ngx_mail_smtp_module
533 535
534 --with-stream enable TCP/UDP proxy module 536 --with-stream enable TCP/UDP proxy module
535 --with-stream=dynamic enable dynamic TCP/UDP proxy module 537 --with-stream=dynamic enable dynamic TCP/UDP proxy module
536 --with-stream_ssl_module enable ngx_stream_ssl_module 538 --with-stream_ssl_module enable ngx_stream_ssl_module
539 --with-stream_quic_module enable ngx_stream_quic_module
537 --with-stream_realip_module enable ngx_stream_realip_module 540 --with-stream_realip_module enable ngx_stream_realip_module
538 --with-stream_geoip_module enable ngx_stream_geoip_module 541 --with-stream_geoip_module enable ngx_stream_geoip_module
539 --with-stream_geoip_module=dynamic enable dynamic ngx_stream_geoip_module 542 --with-stream_geoip_module=dynamic enable dynamic ngx_stream_geoip_module
540 --with-stream_ssl_preread_module enable ngx_stream_ssl_preread_module 543 --with-stream_ssl_preread_module enable ngx_stream_ssl_preread_module
541 --without-stream_limit_conn_module disable ngx_stream_limit_conn_module 544 --without-stream_limit_conn_module disable ngx_stream_limit_conn_module