|
@ -47,15 +47,7 @@ var EINPROGRESS = binding.EINPROGRESS; |
|
|
var ENOENT = binding.ENOENT; |
|
|
var ENOENT = binding.ENOENT; |
|
|
var EMFILE = binding.EMFILE; |
|
|
var EMFILE = binding.EMFILE; |
|
|
var END_OF_FILE = 42; |
|
|
var END_OF_FILE = 42; |
|
|
|
|
|
var SecureContext, SecureStream; // lazy loaded
|
|
|
// Do we have openssl crypto?
|
|
|
|
|
|
try { |
|
|
|
|
|
var SecureContext = process.binding('crypto').SecureContext; |
|
|
|
|
|
var SecureStream = process.binding('crypto').SecureStream; |
|
|
|
|
|
var haveCrypto = true; |
|
|
|
|
|
} catch (e) { |
|
|
|
|
|
var haveCrypto = false; |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
// IDLE TIMEOUTS
|
|
|
// IDLE TIMEOUTS
|
|
|
//
|
|
|
//
|
|
@ -544,10 +536,16 @@ function Stream (fd, type) { |
|
|
sys.inherits(Stream, events.EventEmitter); |
|
|
sys.inherits(Stream, events.EventEmitter); |
|
|
exports.Stream = Stream; |
|
|
exports.Stream = Stream; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
Stream.prototype.setSecure = function (credentials) { |
|
|
Stream.prototype.setSecure = function (credentials) { |
|
|
if (!haveCrypto) { |
|
|
// Do we have openssl crypto?
|
|
|
|
|
|
try { |
|
|
|
|
|
SecureContext = process.binding('crypto').SecureContext; |
|
|
|
|
|
SecureStream = process.binding('crypto').SecureStream; |
|
|
|
|
|
} catch (e) { |
|
|
throw new Error('node.js not compiled with openssl crypto support.'); |
|
|
throw new Error('node.js not compiled with openssl crypto support.'); |
|
|
} |
|
|
} |
|
|
|
|
|
|
|
|
var crypto = require("crypto"); |
|
|
var crypto = require("crypto"); |
|
|
this.secure = true; |
|
|
this.secure = true; |
|
|
this.secureEstablished = false; |
|
|
this.secureEstablished = false; |
|
|