Browse Source

https: make `https` use new `tls.connect` API

Refs #1983.
v0.7.4-release
Maciej Małecki 13 years ago
committed by koichik
parent
commit
df0edf5fe6
  1. 4
      lib/https.js

4
lib/https.js

@ -52,7 +52,9 @@ exports.createServer = function(opts, requestListener) {
// HTTPS agents.
function createConnection(port, host, options) {
return tls.connect(port, host, options);
options.port = port;
options.host = host;
return tls.connect(options);
};
function Agent(options) {

Loading…
Cancel
Save