comparison auto/lib/openssl/conf @ 8627:646bb5361437 quic

Configure: check for QUIC 0-RTT support at compile time.
author Ruslan Ermilov <ru@nginx.com>
date Mon, 27 Sep 2021 10:10:37 +0300
parents 678d1c7a3003
children 8c163ce5b55a
comparison
equal deleted inserted replaced
8626:ea9b645472b5 8627:646bb5361437
163 with nginx by using --with-openssl=<path> option. 163 with nginx by using --with-openssl=<path> option.
164 164
165 END 165 END
166 exit 1 166 exit 1
167 fi 167 fi
168
169 ngx_feature="OpenSSL QUIC 0-RTT context"
170 ngx_feature_name="NGX_OPENSSL_QUIC_ZRTT_CTX"
171 ngx_feature_run=no
172 ngx_feature_incs="#include <openssl/ssl.h>"
173 ngx_feature_path=
174 ngx_feature_libs="-lssl -lcrypto $NGX_LIBDL $NGX_LIBPTHREAD"
175 ngx_feature_test="SSL_set_quic_early_data_context(NULL, NULL, 0)"
176 . auto/feature
177 fi 168 fi