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-1.0-keep-alive.js @ 6f043940

History | View | Annotate | Download (4.28 KB)

# Date Author Comment
695abba5 12/14/2012 01:52 PM isaacs

test: Fix many tests for streams2 net refactor

9a3521cb 09/08/2012 03:43 PM Ben Noordhuis

http: respect HTTP/1.0 TE header

A HTTP/1.0 client does not support 'Transfer-Encoding: chunked' unless it
explicitly requests it by sending a 'TE: chunked' header.

Before this commit, node.js always disabled chunked encoding for HTTP/1.0
clients. Now it will scan for the TE header and turn on chunked encoding if...