diff --git a/configure.py b/configure.py index 7dcfa9dface9d7..fd7450d327d35c 100755 --- a/configure.py +++ b/configure.py @@ -846,12 +846,6 @@ # End dummy list. -parser.add_argument('--with-quic', - action='store_true', - dest='quic', - default=None, - help='build with QUIC support') - parser.add_argument('--without-ssl', action='store_true', dest='without_ssl', @@ -1826,7 +1820,6 @@ def configure_openssl(o): variables['node_shared_ngtcp2'] = b(options.shared_ngtcp2) variables['node_shared_nghttp3'] = b(options.shared_nghttp3) variables['openssl_is_fips'] = b(options.openssl_is_fips) - variables['node_quic'] = b(options.quic) variables['node_fipsinstall'] = b(False) if options.openssl_no_asm: @@ -1888,10 +1881,6 @@ def without_ssl_error(option): if options.openssl_is_fips and not options.shared_openssl: variables['node_fipsinstall'] = b(True) - variables['openssl_quic'] = b(options.quic) - if options.quic: - o['defines'] += ['NODE_OPENSSL_HAS_QUIC'] - configure_library('openssl', o) o['variables']['openssl_version'] = get_openssl_version(o) diff --git a/doc/api/cli.md b/doc/api/cli.md index 311a2ca2674453..9775bbf267e204 100644 --- a/doc/api/cli.md +++ b/doc/api/cli.md @@ -1135,6 +1135,16 @@ If the ES module being `require()`'d contains top-level `await`, this flag allows Node.js to evaluate the module, try to locate the top-level awaits, and print their location to help users find them. +### `--experimental-quic` + + + +> Stability: 1.1 - Active development + +Enable experimental support for the QUIC protocol. + ### `--experimental-require-module`