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
AgeCommit message (Collapse)Author
2013-09-28src: turn uv_pipe_open() failures into exceptionsBen Noordhuis
uv_pipe_open() is unlikely to fail but when it does, the failure should not be quietly ignored. Raise the error as an exception. See joyent/libuv#941.
2013-02-26src, test: downgrade to v8 3.14 apiBen Noordhuis
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.
2013-01-07src: pass node_isolate to Null()Ben Noordhuis
2013-01-07src: pass node_isolate to Local<>::NewBen Noordhuis
2013-01-07src: pass node_isolate to Integer::NewBen Noordhuis
2013-01-05src: use static_cast where appropriateBen Noordhuis
Use static_cast instead of reinterpret_cast when casting from void* to another type. This is mostly an aesthetic change but may help catch bugs when the affected code is modified.
2013-01-02bindings: update to new v8 apisFedor Indutny
GetPointerFromInternalField() is deprecated now, we should use GetAlignedPointerFromInternalField().
2012-07-23export HandleWrap Unref Ref in tcp/udp/timer/pipeTimothy J Fontaine
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-22Make UNWRAP macro generic.Oleg Efimov
2012-05-15Merge remote-tracking branch 'ry/v0.6' into v0.6-mergeisaacs
Conflicts: ChangeLog deps/uv/include/uv-private/uv-unix.h deps/uv/src/unix/core.c deps/uv/src/unix/sunos.c deps/v8/src/runtime.cc doc/api/crypto.markdown lib/http.js src/node_version.h test/gc/test-http-client-timeout.js wscript
2012-05-10pipe_wrap: don't assert() on pipe accept errorsBen Noordhuis
Pass errors to the onconnection callback.
2012-05-09Net.js: fix UCS2 write crash due to inconsistent namingBert Belder
2012-05-09Optimize writing strings with Socket.writeBert Belder
2012-04-18MakeCallback: Consistent symbol usageisaacs
2012-03-23Avoiding unnecessary ToString() callsssuda
String::Utf8Value and String::AsciiValue constructors take Handle<Value> So no need to convert to Handle<String>
2012-03-10core: use proper #include directivesBen Noordhuis
2012-03-09cluster: support passing of named pipesBen Noordhuis
Fixes triggered assertion: Assertion failed: (0 && "bad address family"), function GetPeerName, file ../src/tcp_wrap.cc, line 237. Fixes #2870.
2012-02-15tcp, pipe: don't assert on uv_accept() errorsBen Noordhuis
It's possible for a new connection to be closed in the window between the accept() syscall and the call to uv_accept(). Deal with it and move on, don't assert.
2012-02-10set readable/writable for pipesIgor Zinkovsky
2011-12-06Fix #2257 pause/resume semantics for stdinisaacs
This makes it so that the stdin TTY-wrap stream gets ref'ed on .resume() and unref'ed on .pause() The semantics of the names "pause" and "resume" are a bit weird, but the important thing is that this corrects an API change from 0.4 -> 0.6 which made it impossible to read from stdin multiple times, without knowing when it might end up being closed. If no one has it open, this lets the process die naturally. LGTM'd by @ry
2011-12-02binding for uv_pipe_pending_instancesIgor Zinkovsky
2011-11-09Remove stray NODE_MODULE() semi-colons.Ben Noordhuis
2011-11-05make updates to work with latest libuv api changesIgor Zinkovsky
2011-11-02Add missing copyright headersRyan Dahl
2011-10-20Display sys_errno when UV_UNKNOWN is returnedRyan Dahl
2011-10-07uv_write2 uv_read2_start bindingRyan Dahl
2011-10-06Upgrade libuv to 60c639fRyan Dahl
Also remove unused src/stdio_wrap.cc
2011-09-28Move process.stdout unref hack to handle_wrap.ccRyan Dahl
See #1726
2011-09-13Wrap uv_pipe_open, implement net.Stream(fd);Ryan Dahl
Fixes simple/test-child-process-ipc on unix.
2011-08-31Upgrade libuv to ea4271fRyan Dahl
Required adding uv_default_loop() in many places.
2011-07-30add wrapper for uv_spawnRyan Dahl
process.binding('process_wrap')
2011-07-27wrap: upgrade pipe_wrap and tcp_wrap to new libuv APIBen Noordhuis
2011-07-27stdio binding + javascript to enable process.stdin.listen()Igor Zinkovsky
2011-07-21net: add bindings to libuv pipe APIBen Noordhuis
2011-07-19net_uv: properly initialize writeQueueSizeRyan Dahl
Fixes simple/test-tcp-wrap-listen.js
2011-07-19Move HandleWrap rules to one placeRyan Dahl
2011-07-18PipeWrap should use HandleWrap::CloseRyan Dahl
2011-07-18Add pipe_wrapRyan Dahl