Cross-platform asynchronous I/O
Go to file
2011-05-09 05:50:58 +02:00
ev Compile with -ansi 2011-03-29 16:42:13 -07:00
msvs Add sizes benchmark to VS project 2011-05-08 04:48:27 +02:00
test Add checks to test-loop-handles 2011-05-09 05:41:12 +02:00
.gitignore Add mingw build results to .gitignore 2011-05-09 05:41:12 +02:00
AUTHORS Update AUTHORS 2011-04-21 09:23:18 -07:00
config-mingw.mk Fix the makefile for mingw32 2011-05-08 15:12:20 +02:00
config-unix.mk Fix the makefile for mingw32 2011-05-08 15:12:20 +02:00
iocp-links.html add link to book 2011-04-09 09:38:16 -07:00
LICENSE Minor license update 2011-04-19 17:16:54 +02:00
Makefile Fix the makefile for mingw32 2011-05-08 15:12:20 +02:00
ngx-queue.h echo-server on unix works 2011-03-30 21:37:36 -07:00
oio-unix.c Add _t to typedef structs 2011-05-08 02:40:39 -07:00
oio-unix.h Add _t to typedef structs 2011-05-08 02:40:39 -07:00
oio-win.c Windows: check for invalid request type 2011-05-09 05:50:58 +02:00
oio-win.h Windows: cleanups, minor fixes 2011-05-09 02:12:25 +02:00
oio.h oio_async or The Most Half-Assed Api In The Universe™ 2011-05-09 02:15:28 +02:00
README Update readme 2011-05-07 21:35:05 -07:00
tree.h Windows: first shot at oio_timeout support 2011-04-12 20:39:14 +02: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/

## Supported Platforms

Microsoft Windows operating systems since Windows 2000. Build either Visual
Studio or MingW.

Linux 2.6 and MacOS using the GCC toolchain.

## Design

The goal of this library is to provide high-concurrency high-performance I/O
on all operating systems. This is a large undertaking. Some of the API
decisions may seem arbitrary but are actually borne out of various specific
platform issues.

## oio_read_start(), oio_read_stop()

Originally we wanted to provide a asynchronous read function that was
similar to WSARecv().