Ryan Dahl 760bba5518 Support Upgrade in HTTP messages
This allows for web servers to be "hijacked" and used as Web Socket servers
(or other). You simply listen for requests as normal, but check if

  req.upgrade === true

If so, this will be the last request of the connection. It's your job now to
hijack req.connection and start reading from it. req.upgradeHead is a buffer
containing the first part of the new protocol communication (in the case it
arrived on the same packet).

This needs tests and documentation. API subject to change.
2010-04-14 03:52:15 -07:00
2010-04-04 21:12:25 -07:00
2010-04-14 03:22:38 -07:00
2010-04-13 13:50:17 -07:00
2010-04-14 03:52:15 -07:00
2010-04-14 03:52:15 -07:00
2010-04-14 00:36:34 -07:00
2010-04-04 21:12:25 -07:00
2010-03-19 21:07:03 -07:00
2010-04-09 17:05:03 -07:00
2009-12-06 07:35:26 +01:00
2010-04-07 18:25:37 -07:00
2010-04-09 16:52:10 -07:00
2010-03-26 18:28:40 -07:00
2010-04-13 15:43:58 -07:00

Evented I/O for V8 javascript.

To build:

  ./configure
  make 
  make install

To run the tests:
  
  make test

To build the documentation and install it, you will need ronn:

  make doc install
 
To read the documentation:

  man doc/node.1

See http://nodejs.org/ for more information. For help and discussion
subscribe to the mailing list by visiting
http://groups.google.com/group/nodejs or by sending an email to
nodejs+subscribe@googlegroups.com.
Description
No description provided
Readme 175 MiB