The data contained in this repository can be downloaded to your computer using one of several clients.
Please see the documentation of your version control software client for more information.

Please select the desired protocol below to get the URL.

This URL has Read-Only access.

Statistics
| Branch: | Revision:

main_repo / test / simple / test-http-should-keep-alive.js @ 6f043940

History | View | Annotate | Download (2.71 KB)

# Date Author Comment
327b6e3e 03/10/2013 02:08 PM isaacs

stream: Don't emit 'end' unless read() called

This solves the problem of calling `readable.pipe(writable)` after the
readable stream has already emitted 'end', as often is the case when
writing simple HTTP proxies.

The spirit of streams2 is that things will work properly, even if you...

0cdf85e2 02/18/2012 06:34 PM isaacs

Lint all the JavaScripts.

3df7c90c 01/22/2012 12:55 AM koichik

http: keep-alive should default with HTTP/1.1 server

As RFC 2616 says we should, assume that servers will provide a persistent
connection by default.

A significant difference between HTTP/1.1 and earlier versions of
HTTP is that persistent connections are the default behavior of any...