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-https-client-reject.js @ 6f043940

History | View | Annotate | Download (2.72 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...

35607f3a 09/14/2012 06:19 PM Ben Noordhuis

tls, https: validate server certificate by default

This commit changes the default value of the rejectUnauthorized option from
false to true.

What that means is that tls.connect(), https.get() and https.request() will
reject invalid server certificates from now on, including self-signed...

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

Lint all the JavaScripts.

f8c335d0 12/07/2011 08:47 AM koichik

tls: enable rejectUnauthorized option to client

Fiexes #2247.