summaryrefslogtreecommitdiff
path: root/test/simple/test-https-eof-for-eom.js
Commit message (Collapse)AuthorAgeFilesLines
* tls: introduce TLSSocket based on tls_wrap bindingFedor Indutny2013-06-161-1/+1
| | | | | | | | Split `tls.js` into `_tls_legacy.js`, containing legacy `createSecurePair` API, and `_tls_wrap.js` containing new code based on `tls_wrap` binding. Remove tests that are no longer useful/valid.
* test: set rejectUnauthorized in tls/https testsBen Noordhuis2012-09-151-7/+4
| | | | | Update the tls and https tests to explicitly set rejectUnauthorized instead of relying on the NODE_TLS_REJECT_UNAUTHORIZED environment variable getting set.
* tls, https: validate server certificate by defaultBen Noordhuis2012-09-151-0/+3
| | | | | | | | | | | | | | | 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 certificates. There is an escape hatch: if you set the NODE_TLS_REJECT_UNAUTHORIZED environment variable to the literal string "0", node.js reverts to its old behavior. Fixes #3949.
* Remove separation of libuv testsRyan Dahl2011-11-021-1/+1
|
* Fixed a lot of jslint errors.Colton Baker2011-10-051-1/+1
| | | | Fixes #1831
* Mark tests which are broken in libuvRyan Dahl2011-08-231-0/+3
|
* cleartextstream.destroy() should destroy socket.Ryan Dahl2011-05-021-1/+1
| | | | | | This fixes a critical bug see in MJR's production. Very difficult to build a test case. Sometimes HTTPS server gets sockets that are hanging in a half-duplex state.
* Update copyright headersRyan Dahl2011-03-141-0/+21
|
* https was missing 'end' event sometimesRyan Dahl2011-02-151-0/+77
Closes GH-671.