Cross-platform asynchronous I/O
Go to file
2011-05-08 00:19:50 +02:00
ev Compile with -ansi 2011-03-29 16:42:13 -07:00
msvs Move visual studio solution/projects away from root 2011-05-07 04:14:20 +02:00
test LF after tests complete 2011-05-05 00:21:13 -07:00
.gitignore Move visual studio solution/projects away from root 2011-05-07 04:14:20 +02:00
AUTHORS Update AUTHORS 2011-04-21 09:23:18 -07: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 missing stddup def on unix 2011-04-30 13:28:14 -07:00
ngx-queue.h echo-server on unix works 2011-03-30 21:37:36 -07:00
oio-unix.c unix: Close on EOF if already shutdown 2011-05-04 15:36:40 -07:00
oio-unix.h Fix some of the naming in private unix members 2011-05-03 17:08:02 -07:00
oio-win.c Windows: implement oio_ref and oio_unref 2011-05-08 00:19:50 +02:00
oio-win.h Windows: make room for oio_handle polymorphism 2011-05-08 00:19:47 +02:00
oio.h Update API 2011-05-07 21:54:06 +02:00
README unix: Close on EOF if already shutdown 2011-05-04 15:36:40 -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/

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