diff --git a/lib/tls.js b/lib/tls.js index 96af640b5d4..547e9395c68 100644 --- a/lib/tls.js +++ b/lib/tls.js @@ -723,6 +723,7 @@ function Server(/* [options], listener */) { key: self.key, cert: self.cert, ca: self.ca, + secureProtocol: self.secureProtocol, crl: self.crl }); //creds.context.setCiphers('RC4-SHA:AES128-SHA:AES256-SHA'); @@ -792,6 +793,7 @@ Server.prototype.setOptions = function(options) { if (options.key) this.key = options.key; if (options.cert) this.cert = options.cert; if (options.ca) this.ca = options.ca; + if (options.secureProtocol) this.secureProtocol = options.secureProtocol; if (options.crl) this.crl = options.crl; };