Cross-platform asynchronous I/O
Go to file
Ben Noordhuis c4611a4148 uv-unix: move stream->fd >= 0 asserts out of connection error path
on_connect callback must be invoked even if the connect() syscall
fails. stream->fd == -1 in that case.
2011-07-21 03:35:14 +02:00
doc src/ and include/ directories 2011-07-07 07:52:57 -07:00
include uv_close returns void 2011-07-20 18:03:48 -07:00
msvs Test: active idle watcher should not block other events 2011-07-21 02:53:27 +02:00
src uv-unix: move stream->fd >= 0 asserts out of connection error path 2011-07-21 03:35:14 +02:00
test Correct idle_starvation test 2011-07-21 03:28:40 +02:00
.gitignore c-ares unix 2011-06-15 14:23:46 +02:00
AUTHORS Add Matt to the authors 2011-06-28 14:11:47 +02:00
config-mingw.mk Windows: make clean deletes object files in src/win 2011-07-19 15:01:09 +02:00
config-unix.mk config-unix: drop --std=c89 on cygwin, hides CLOCK_MONOTONIC. 2011-07-20 17:58:27 +02:00
LICENSE unix: Include libeio 2011-06-30 11:43:17 -07:00
Makefile Makefile: disable test-% and bench-% targets 2011-07-14 03:32:19 +02:00
README Add doc on desired-api 2011-05-28 01:47:47 -07:00

This is the new networking layer for Node. Its purpose is to abstract
IOCP on windows and libev on Unix systems. We intend to eventually contain
all platform differences in this library.

http://nodejs.org/

(This was previously called liboio)

Supported Platforms:

Microsoft Windows operating systems since Windows XP sp2. It can be built
with either Visual Studio or MinGW.

Linux 2.6 and MacOS using the GCC toolchain.

Solaris 121 and later using GCC toolchain.