2011-04-18 10:17:40 -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.
|
|
|
|
|
2011-04-18 11:10:18 -07:00
|
|
|
http://nodejs.org/
|
|
|
|
|
2011-05-07 21:35:05 -07:00
|
|
|
## Supported Platforms
|
|
|
|
|
2011-05-10 16:21:12 -07:00
|
|
|
Microsoft Windows operating systems since Windows XP sp2. It can be built
|
|
|
|
with either Visual Studio or MinGW.
|
2011-05-07 21:35:05 -07:00
|
|
|
|
|
|
|
Linux 2.6 and MacOS using the GCC toolchain.
|
|
|
|
|
2011-05-10 06:53:21 +00:00
|
|
|
Solaris 121 and later using GCC toolchain.
|
|
|
|
|
2011-05-07 21:35:05 -07:00
|
|
|
## Design
|
2011-05-04 15:36:40 -07:00
|
|
|
|
|
|
|
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.
|
|
|
|
|
2011-05-07 21:35:05 -07:00
|
|
|
## oio_read_start(), oio_read_stop()
|
2011-05-04 15:36:40 -07:00
|
|
|
|
|
|
|
Originally we wanted to provide a asynchronous read function that was
|
2011-05-07 21:35:05 -07:00
|
|
|
similar to WSARecv().
|
2011-05-04 15:36:40 -07:00
|
|
|
|