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