diff --git a/doc/api/deprecations.md b/doc/api/deprecations.md index 1aef639cfc82e5..15199b9ebeb64d 100644 --- a/doc/api/deprecations.md +++ b/doc/api/deprecations.md @@ -2279,6 +2279,20 @@ and `cluster` modules on Windows. The function is not generally useful and is being removed. See discussion here: https://github.com/nodejs/node/issues/18391 + +### DEP0122: tls Server.prototype.setOptions() + + +Type: Runtime + +Please use `Server.prototype.setSecureContext()` instead. + + [`--pending-deprecation`]: cli.html#cli_pending_deprecation [`Buffer.allocUnsafeSlow(size)`]: buffer.html#buffer_class_method_buffer_allocunsafeslow_size [`Buffer.from(array)`]: buffer.html#buffer_class_method_buffer_from_array diff --git a/lib/_tls_wrap.js b/lib/_tls_wrap.js index aa8b66b7155b3e..f0d86f3d870f09 100644 --- a/lib/_tls_wrap.js +++ b/lib/_tls_wrap.js @@ -827,16 +827,19 @@ function Server(options, listener) { throw new ERR_INVALID_ARG_TYPE('options', 'Object', options); } - this._contexts = []; + this.requestCert = options.requestCert === true; + this.rejectUnauthorized = options.rejectUnauthorized !== false; - // Handle option defaults: - this.setOptions(options); + if (options.sessionTimeout) + this.sessionTimeout = options.sessionTimeout; + + if (options.ticketKeys) + this.ticketKeys = options.ticketKeys; + + if (options.ALPNProtocols) + tls.convertALPNProtocols(options.ALPNProtocols, this); - // setSecureContext() overlaps with setOptions() quite a bit. setOptions() - // is an undocumented API that was probably never intended to be exposed - // publicly. Unfortunately, it would be a breaking change to just remove it, - // and there is at least one test that depends on it. this.setSecureContext(options); this[kHandshakeTimeout] = options.handshakeTimeout || (120 * 1000); @@ -998,7 +1001,7 @@ Server.prototype.setTicketKeys = function setTicketKeys(keys) { }; -Server.prototype.setOptions = function(options) { +Server.prototype.setOptions = util.deprecate(function(options) { this.requestCert = options.requestCert === true; this.rejectUnauthorized = options.rejectUnauthorized !== false; @@ -1033,7 +1036,7 @@ Server.prototype.setOptions = function(options) { .digest('hex') .slice(0, 32); } -}; +}, 'Server.prototype.setOptions() is deprecated', 'DEP0122'); // SNI Contexts High-Level API Server.prototype.addContext = function(servername, context) { diff --git a/test/parallel/test-tls-server-setoptions-clientcertengine.js b/test/parallel/test-tls-server-setoptions-clientcertengine.js index beafdd7c2be47b..56026c9b23d4ed 100644 --- a/test/parallel/test-tls-server-setoptions-clientcertengine.js +++ b/test/parallel/test-tls-server-setoptions-clientcertengine.js @@ -10,6 +10,9 @@ const tls = require('tls'); { const server = tls.createServer(); assert.strictEqual(server.clientCertEngine, undefined); + common.expectWarning('DeprecationWarning', + 'Server.prototype.setOptions() is deprecated', + 'DEP0122'); server.setOptions({ clientCertEngine: 'Cannonmouth' }); assert.strictEqual(server.clientCertEngine, 'Cannonmouth'); }