The data contained in this repository can be downloaded to your computer using one of several clients.
Please see the documentation of your version control software client for more information.

Please select the desired protocol below to get the URL.

This URL has Read-Only access.

Statistics
| Branch: | Revision:

main_repo / src / pipe_wrap.cc @ 0544a586

History | View | Annotate | Download (7.85 KB)

# Date Author Comment
039fac63 05/22/2012 10:14 AM Ben Noordhuis

deps: upgrade libuv to a478847

The event loop's reference counting scheme in this version of libuv has changed.
Update the libuv bindings to reflect that fact.

45de259b 05/21/2012 05:29 PM Oleg Efimov

Make UNWRAP macro generic.

5164ae38 05/15/2012 02:37 PM isaacs

Merge remote-tracking branch 'ry/v0.6' into v0.6-merge

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...

3883f22a 05/09/2012 05:30 PM Ben Noordhuis

pipe_wrap: don't assert() on pipe accept errors

Pass errors to the onconnection callback.

b673d067 05/08/2012 10:58 PM Bert Belder

Net.js: fix UCS2 write crash due to inconsistent naming

0e57aafb 05/08/2012 09:56 PM Bert Belder

Optimize writing strings with Socket.write

a26bee8f 04/17/2012 04:14 PM isaacs

MakeCallback: Consistent symbol usage

249c3c16 03/22/2012 08:02 PM ssuda

Avoiding unnecessary ToString() calls

String::Utf8Value and String::AsciiValue constructors take Handle<Value>
So no need to convert to Handle<String>

ff4a9d38 03/09/2012 06:14 PM Ben Noordhuis

core: use proper #include directives

296b7a58 03/09/2012 12:42 PM Ben Noordhuis

cluster: support passing of named pipes

Fixes triggered assertion:

Assertion failed: (0 && "bad address family"), function GetPeerName,
file ../src/tcp_wrap.cc, line 237.

Fixes #2870.

0685707b 02/15/2012 10:45 AM Ben Noordhuis

tcp, pipe: don't assert on uv_accept() errors

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.

c7771bc2 02/10/2012 02:28 PM Igor Zinkovsky

set readable/writable for pipes

cf20b6bf 12/05/2011 07:47 PM isaacs

Fix #2257 pause/resume semantics for stdin

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...

99c9d191 12/01/2011 04:57 PM Igor Zinkovsky

binding for uv_pipe_pending_instances

cdcb1118 11/09/2011 10:34 AM Ben Noordhuis

Remove stray NODE_MODULE() semi-colons.

6545a6dc 11/04/2011 09:01 PM Igor Zinkovsky

make updates to work with latest libuv api changes

60818b95 11/02/2011 01:00 PM Ryan Dahl

Add missing copyright headers

6cc42927 10/19/2011 07:53 PM Ryan Dahl

Display sys_errno when UV_UNKNOWN is returned

471c5701 10/07/2011 01:31 AM Ryan Dahl

uv_write2 uv_read2_start binding

311fe737 10/06/2011 03:34 PM Ryan Dahl

Upgrade libuv to 60c639f

Also remove unused src/stdio_wrap.cc

7e62bc98 09/27/2011 06:01 PM Ryan Dahl

Move process.stdout unref hack to handle_wrap.cc

See #1726

caaa59c5 09/12/2011 06:09 PM Ryan Dahl

Wrap uv_pipe_open, implement net.Stream(fd);

Fixes simple/test-child-process-ipc on unix.

21cc4c49 08/31/2011 04:53 AM Ryan Dahl

Upgrade libuv to ea4271f

Required adding uv_default_loop() in many places.

f01b2410 07/29/2011 09:03 PM Ryan Dahl

add wrapper for uv_spawn

process.binding('process_wrap')

83b82f90 07/26/2011 10:13 PM Ben Noordhuis

wrap: upgrade pipe_wrap and tcp_wrap to new libuv API

187fe27a 07/26/2011 09:59 PM Igor Zinkovsky

stdio binding + javascript to enable process.stdin.listen()

37cbc355 07/20/2011 09:51 PM Ben Noordhuis

net: add bindings to libuv pipe API

6050af4f 07/19/2011 05:19 AM Ryan Dahl

net_uv: properly initialize writeQueueSize

Fixes simple/test-tcp-wrap-listen.js

85404c5c 07/18/2011 04:47 PM Ryan Dahl

Move HandleWrap rules to one place

61cda1e3 07/18/2011 07:30 AM Ryan Dahl

PipeWrap should use HandleWrap::Close

cc0f608c 07/18/2011 06:08 AM Ryan Dahl

Add pipe_wrap