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-socket-options.js @ 6f043940

History | View | Annotate | Download (2.84 KB)

# Date Author Comment
19ecc3a4 12/14/2012 08:46 PM isaacs

test updates for streams2

3806cf0d 09/14/2012 06:19 PM Ben Noordhuis

test: set rejectUnauthorized in tls/https tests

Update the tls and https tests to explicitly set rejectUnauthorized instead of
relying on the NODE_TLS_REJECT_UNAUTHORIZED environment variable getting set.

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...

78db1873 03/02/2012 06:28 PM Jimb Esser

tls: proxy set(Timeout|NoDelay|KeepAlive) methods

- fix crash calling ClientRequest::setKeepAlive if the underlying request is
HTTPS.
- fix discarding of callback parameter when calling ClientRequest::setTimeout on
HTTPS requests.
- fix discarding of noDelay parameter when calling ClientRequest::setNoDelay on...