diff options
author | Aria Stewart <aredridel@nbtsc.org> | 2010-08-21 15:26:42 -0600 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2010-08-22 12:31:58 -0700 |
commit | a834d93d2ccc1be51d6f5a658ad5f5fd60d3d6f7 (patch) | |
tree | 9175e74767dd947f8d30c54d5316188a367fbe84 | |
parent | 2982e75a0b98a0c6707db2f0f6e7ed740b78a6be (diff) | |
download | nodejs-a834d93d2ccc1be51d6f5a658ad5f5fd60d3d6f7.tar.gz nodejs-a834d93d2ccc1be51d6f5a658ad5f5fd60d3d6f7.tar.bz2 nodejs-a834d93d2ccc1be51d6f5a658ad5f5fd60d3d6f7.zip |
s/HTTPS/SSL/ where appropriate
-rw-r--r-- | doc/api.markdown | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/api.markdown b/doc/api.markdown index 4a41a2b56..6e4b38307 100644 --- a/doc/api.markdown +++ b/doc/api.markdown @@ -2225,7 +2225,7 @@ See `connect()`. `function () { }` -Emitted when a stream connection successfully establishes a HTTPS handshake with its peer. +Emitted when a stream connection successfully establishes an SSL handshake with its peer. ### Event: 'data' @@ -2314,9 +2314,9 @@ received. ### stream.setSecure([credentials]) -Enables HTTPS support for the stream, with the crypto module credentials specifying the private key and certificate of the stream, and optionally the CA certificates for use in peer authentication. +Enables SSL support for the stream, with the crypto module credentials specifying the private key and certificate of the stream, and optionally the CA certificates for use in peer authentication. -If the credentials hold one ore more CA certificates, then the stream will request for the peer to submit a client certificate as part of the HTTPS connection handshake. The validity and content of this can be accessed via verifyPeer() and getPeerCertificate(). +If the credentials hold one ore more CA certificates, then the stream will request for the peer to submit a client certificate as part of the SSL connection handshake. The validity and content of this can be accessed via verifyPeer() and getPeerCertificate(). ### stream.verifyPeer() |