diff options
author | Fedor Indutny <fedor@indutny.com> | 2015-02-23 23:09:44 +0300 |
---|---|---|
committer | Fedor Indutny <fedor@indutny.com> | 2015-02-24 22:38:21 +0300 |
commit | 1738c7783526868d86cb213414cb4d40c5a89662 (patch) | |
tree | 956d199d9e1b7f793bfe60db58bef27583ca1ebb /src/async-wrap.h | |
parent | e00c938d246c29897344be3b3060533bb4ad7806 (diff) | |
download | node-new-1738c7783526868d86cb213414cb4d40c5a89662.tar.gz |
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 <christopher.s.dickinson@gmail.com>
Diffstat (limited to 'src/async-wrap.h')
-rw-r--r-- | src/async-wrap.h | 1 |
1 files changed, 1 insertions, 0 deletions
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) \ |