Home
last modified time | relevance | path

Searched refs:maxTotalSockets (Results 1 – 4 of 4) sorted by relevance

/third_party/node/test/parallel/
Dtest-http-agent-maxtotalsockets.js9 maxTotalSockets: 'test', property
19 maxTotalSockets: item, property
29 maxTotalSockets: Infinity, property
33 const { maxTotalSockets, maxSockets } = param;
38 maxTotalSockets, property
74 assert(getTotalSocketsCount() <= maxTotalSockets);
105 maxTotalSockets: 2,
108 maxTotalSockets: 3,
111 maxTotalSockets: 2,
/third_party/node/lib/
D_http_agent.js98 this.maxTotalSockets = this.options.maxTotalSockets;
103 if (this.maxTotalSockets !== undefined) {
104 validateNumber(this.maxTotalSockets, 'maxTotalSockets');
105 if (this.maxTotalSockets <= 0 || NumberIsNaN(this.maxTotalSockets))
107 this.maxTotalSockets);
109 this.maxTotalSockets = Infinity;
160 if (this.totalSocketCount > this.maxTotalSockets ||
271 this.totalSocketCount < this.maxTotalSockets) {
/third_party/node/doc/api/
Dhttp.md121 description: Add `maxTotalSockets` option to agent constructor.
151 * `maxTotalSockets` {number} Maximum number of sockets allowed for
321 ### `agent.maxTotalSockets`
/third_party/node/doc/changelogs/
DCHANGELOG_V14.md3370 * [[`e273edf943`](https://github.com/nodejs/node/commit/e273edf943)] - **doc**: Add maxTotalSockets
3501 …m/nodejs/node/commit/507a2ef31c)] - **(SEMVER-MINOR)** **http**: add maxTotalSockets to agent clas…