Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions doc/api/http.md
Original file line number Diff line number Diff line change
Expand Up @@ -231,6 +231,10 @@ const keepAliveAgent = new http.Agent({ keepAlive: true });
options.agent = keepAliveAgent;
http.request(options, onResponseCallback);
```
### `agent.options`

> **Note:** The `options` property reflects the configuration used when creating the agent. However, this property is not part of the documented public API and should not be relied upon for application logic, as it may change without notice.

### `agent.createConnection(options[, callback])`

Expand Down
Loading