src: deprecate option variables in public API
These variables should never have been exposed as part of the public API, and certainly not as variables. Using CLI options parser is the right thing to do here, at least until we expose some part of the options parser API publicly (which should be possible to do now). PR-URL: https://github.com/nodejs/node/pull/22515 Reviewed-By: Gus Caplan <me@gus.host> Reviewed-By: Refael Ackermann <refack@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com> Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Joyee Cheung <joyeec9h3@gmail.com> Reviewed-By: Tobias Nießen <tniessen@tnie.de> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de>
This commit is contained in:
parent
37cd10a116
commit
f911e09ab4
15
src/node.h
15
src/node.h
@ -199,14 +199,17 @@ typedef intptr_t ssize_t;
|
|||||||
|
|
||||||
namespace node {
|
namespace node {
|
||||||
|
|
||||||
// TODO(addaleax): Deprecate and remove all of these ASAP. They have been
|
// TODO(addaleax): Remove all of these.
|
||||||
// made effectively non-functional anyway.
|
NODE_DEPRECATED("use command-line flags",
|
||||||
NODE_EXTERN extern bool no_deprecation;
|
NODE_EXTERN extern bool no_deprecation);
|
||||||
#if HAVE_OPENSSL
|
#if HAVE_OPENSSL
|
||||||
NODE_EXTERN extern bool ssl_openssl_cert_store;
|
NODE_DEPRECATED("use command-line flags",
|
||||||
|
NODE_EXTERN extern bool ssl_openssl_cert_store);
|
||||||
# if NODE_FIPS_MODE
|
# if NODE_FIPS_MODE
|
||||||
NODE_EXTERN extern bool enable_fips_crypto;
|
NODE_DEPRECATED("use command-line flags",
|
||||||
NODE_EXTERN extern bool force_fips_crypto;
|
NODE_EXTERN extern bool enable_fips_crypto);
|
||||||
|
NODE_DEPRECATED("user command-line flags",
|
||||||
|
NODE_EXTERN extern bool force_fips_crypto);
|
||||||
# endif
|
# endif
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
@ -27,8 +27,9 @@
|
|||||||
|
|
||||||
namespace node {
|
namespace node {
|
||||||
|
|
||||||
// TODO(addaleax): Deprecate and remove this ASAP.
|
// TODO(addaleax): Remove this.
|
||||||
extern bool zero_fill_all_buffers;
|
NODE_DEPRECATED("use command-line flags",
|
||||||
|
extern bool zero_fill_all_buffers);
|
||||||
|
|
||||||
namespace Buffer {
|
namespace Buffer {
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user