Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nodejs/node.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorFedor Indutny <fedor.indutny@gmail.com>2013-07-03 11:46:01 +0400
committerFedor Indutny <fedor.indutny@gmail.com>2013-07-03 16:15:31 +0400
commit07fbb43d78a5d193722bb544b44235cb6a6817a4 (patch)
tree52864efa6a26c19574270db1c1c4117e9e533332 /lib/tls.js
parent6f8ddf375950f506f26e143900355871416a03e6 (diff)
tls: export TLSSocket
Diffstat (limited to 'lib/tls.js')
-rw-r--r--lib/tls.js1
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/tls.js b/lib/tls.js
index e199cc57054..6d2f59e36c5 100644
--- a/lib/tls.js
+++ b/lib/tls.js
@@ -207,6 +207,7 @@ exports.parseCertString = function parseCertString(s) {
};
// Public API
+exports.TLSSocket = require('_tls_wrap').TLSSocket;
exports.Server = require('_tls_wrap').Server;
exports.createServer = require('_tls_wrap').createServer;
exports.connect = require('_tls_wrap').connect;