summaryrefslogtreecommitdiff
path: root/src/stream_wrap.h
AgeCommit message (Collapse)Author
2013-07-03slab_allocator: remove SlabAllocatorTrevor Norris
Now that Buffer instantiation has improved, the SlabAllocator is an unnecessary layer of complexity preventing further performance optimizations. Currently there is a small performance loss with very small stream requests, but this will soon be addressed.
2013-06-15stream_wrap: introduce StreamWrapCallbacksFedor Indutny
StreamWrapCallbacks is a helper class for incepting into uv_stream_t* management process.
2013-05-30src: simplify HandleWrap initializationBen Noordhuis
2013-05-17Merge remote-tracking branch 'ry/v0.10' into masterisaacs
Conflicts: AUTHORS ChangeLog deps/uv/ChangeLog deps/uv/config-unix.mk deps/uv/src/unix/stream.c deps/uv/src/version.c deps/uv/uv.gyp src/node.cc src/node_buffer.cc src/node_crypto.cc src/node_version.h src/stream_wrap.cc src/stream_wrap.h
2013-05-14src: Use StringBytes in StreamWrapisaacs
2013-05-07stream_wrap: remove unused arg from WriteBufferTrevor Norris
WriteBuffer was changed in the cork/uncork implementation (60ed2c54). The unused argument has been removed.
2013-04-27net: implement ._writev for .cork/uncork() supportFedor Indutny
Add Writev method to StreamWrap class for writing mixed array of strings and buffers. Expose this method for TCP class.
2013-02-13stream_wrap, udp_wrap: add read-only fd propertyBen Noordhuis
Expose the file descriptor as a read-only property on the internal handle objects. Intended for debugging purposes, not part of the API proper. The property is always null on Windows. Fixes #4754.
2012-05-22deps: upgrade libuv to a478847Ben Noordhuis
The event loop's reference counting scheme in this version of libuv has changed. Update the libuv bindings to reflect that fact.
2012-05-09stream_wrap: fix compilation errorsBen Noordhuis
2012-05-09Optimize writing strings with Socket.writeBert Belder
2012-03-10core: use proper #include directivesBen Noordhuis
2011-11-02Add missing copyright headersRyan Dahl
2011-10-06uv_write2 uv_read2_start bindingRyan Dahl
2011-08-24stream_wrap: update after libuv API changeBen Noordhuis
2011-07-27stdio binding + javascript to enable process.stdin.listen()Igor Zinkovsky
2011-07-19net_uv: properly initialize writeQueueSizeRyan Dahl
Fixes simple/test-tcp-wrap-listen.js
2011-07-18Abstract out HandleWrap classRyan Dahl
2011-07-18Abstract StreamWrap from TCPWrapRyan Dahl