diff --git a/doc/api/https.md b/doc/api/https.md index 75c2b57ab2085c..95e7e715c32ca5 100644 --- a/doc/api/https.md +++ b/doc/api/https.md @@ -10,11 +10,28 @@ separate module. ## Class: https.Agent An [`Agent`][] object for HTTPS similar to [`http.Agent`][]. See [`https.request()`][] for more information. +### new Agent([options]) + +* `options` {Object} Set of configurable options to set on the agent. + Can have the same fields as for [`http.Agent(options)`][], and + * `maxCachedSessions` {number} maximum number of TLS cached sessions. + Use `0` to disable TLS session caching. **Default:** `100`. + + See [`Session Resumption`][] for infomation about TLS session reuse. + ## Class: https.Server