We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 90348a6 commit d0e84b0Copy full SHA for d0e84b0
lib/tls.js
@@ -723,6 +723,7 @@ function Server(/* [options], listener */) {
723
key: self.key,
724
cert: self.cert,
725
ca: self.ca,
726
+ secureProtocol: self.secureProtocol,
727
crl: self.crl
728
});
729
//creds.context.setCiphers('RC4-SHA:AES128-SHA:AES256-SHA');
@@ -792,6 +793,7 @@ Server.prototype.setOptions = function(options) {
792
793
if (options.key) this.key = options.key;
794
if (options.cert) this.cert = options.cert;
795
if (options.ca) this.ca = options.ca;
796
+ if (options.secureProtocol) this.secureProtocol = options.secureProtocol;
797
if (options.crl) this.crl = options.crl;
798
};
799
0 commit comments