From 1738c7783526868d86cb213414cb4d40c5a89662 Mon Sep 17 00:00:00 2001 From: Fedor Indutny Date: Mon, 23 Feb 2015 23:09:44 +0300 Subject: streams: introduce StreamWrap and JSStream Introduce a way to wrap plain-js `stream.Duplex` streams into C++ StreamBase's child class. With such method at hand it is now possible to pass `stream.Duplex` instance as a `socket` parameter to `tls.connect()`. PR-URL: https://github.com/iojs/io.js/pull/926 Reviewed-By: Chris Dickinson --- src/async-wrap.h | 1 + 1 file changed, 1 insertion(+) (limited to 'src/async-wrap.h') diff --git a/src/async-wrap.h b/src/async-wrap.h index 86748a5fef..5e898fe4c2 100644 --- a/src/async-wrap.h +++ b/src/async-wrap.h @@ -17,6 +17,7 @@ namespace node { V(FSREQWRAP) \ V(GETADDRINFOREQWRAP) \ V(GETNAMEINFOREQWRAP) \ + V(JSSTREAM) \ V(PIPEWRAP) \ V(PROCESSWRAP) \ V(QUERYWRAP) \ -- cgit v1.2.1