0
0
mirror of https://github.com/nodejs/node.git synced 2024-12-01 16:10:02 +01:00

doc refactor: https

This commit is contained in:
isaacs 2012-02-27 11:09:34 -08:00
parent 4f24b20fcb
commit c205d3b53a

View File

@ -1,9 +1,9 @@
## HTTPS
# HTTPS
HTTPS is the HTTP protocol over TLS/SSL. In Node this is implemented as a
separate module.
## https.Server
## Class: https.Server
This class is a subclass of `tls.Server` and emits events same as
`http.Server`. See `http.Server` for more information.
@ -152,7 +152,7 @@ Example:
});
## https.Agent
## Class: https.Agent
An Agent object for HTTPS similar to [http.Agent](http.html#http.Agent).
See [https.request()](#https.request) for more information.