Searched refs:maxCachedSessions (Results 1 – 14 of 14) sorted by relevance
/third_party/node/deps/undici/src/lib/core/ |
D | connect.js | 18 constructor (maxCachedSessions) { argument 19 this._maxCachedSessions = maxCachedSessions 49 constructor (maxCachedSessions) { argument 50 this._maxCachedSessions = maxCachedSessions 74 function buildConnector ({ maxCachedSessions, socketPath, timeout, ...opts }) { property 75 …if (maxCachedSessions != null && (!Number.isInteger(maxCachedSessions) || maxCachedSessions < 0)) { 80 const sessionCache = new SessionCache(maxCachedSessions == null ? 100 : maxCachedSessions)
|
/third_party/node/deps/npm/node_modules/agentkeepalive/lib/ |
D | https_agent.js | 16 this.maxCachedSessions = this.options.maxCachedSessions; 18 if (this.maxCachedSessions === undefined) { 19 this.maxCachedSessions = 100;
|
/third_party/node/lib/ |
D | https.js | 190 this.maxCachedSessions = this.options.maxCachedSessions; 191 if (this.maxCachedSessions === undefined) 192 this.maxCachedSessions = 100; 305 if (this.maxCachedSessions === 0) 315 if (this._sessionCache.list.length >= this.maxCachedSessions) {
|
/third_party/node/deps/undici/src/lib/ |
D | pool.js | 33 maxCachedSessions, property 56 maxCachedSessions, property
|
D | client.js | 153 maxCachedSessions, property 258 maxCachedSessions, property
|
/third_party/node/deps/undici/src/types/ |
D | connector.d.ts | 10 maxCachedSessions?: number | null;
|
D | client.d.ts | 60 maxCachedSessions?: number;
|
/third_party/node/test/parallel/ |
D | test-https-agent-disable-session-reuse.js | 23 maxCachedSessions: 0 property
|
D | test-https-agent-session-reuse.js | 23 maxCachedSessions: 1 property
|
/third_party/node/deps/undici/src/docs/api/ |
D | Connector.md | 16 * **maxCachedSessions** `number | null` (optional) - Default: `100` - Maximum number of TLS cached …
|
D | Client.md | 44 * **maxCachedSessions** `number | null` (optional) - Default: `100` - Maximum number of TLS cached …
|
/third_party/node/doc/api/ |
D | https.md | 56 description: support `0` `maxCachedSessions` to disable TLS session caching. 59 description: parameter `maxCachedSessions` added to `options` for TLS 78 * `maxCachedSessions` {number} maximum number of TLS cached sessions.
|
/third_party/node/deps/undici/ |
D | undici.js | 6478 constructor(maxCachedSessions) { argument 6479 this._maxCachedSessions = maxCachedSessions; 6505 constructor(maxCachedSessions) { argument 6506 this._maxCachedSessions = maxCachedSessions; 6524 function buildConnector({ allowH2, maxCachedSessions, socketPath, timeout, ...opts }) { property 6525 …if (maxCachedSessions != null && (!Number.isInteger(maxCachedSessions) || maxCachedSessions < 0)) { 6529 const sessionCache = new SessionCache(maxCachedSessions == null ? 100 : maxCachedSessions); 7275 maxCachedSessions, property 7354 maxCachedSessions, property 8893 maxCachedSessions, property [all …]
|
/third_party/node/doc/changelogs/ |
D | CHANGELOG_V11.md | 486 …/nodejs/node/commit/6cc559fbec)] - **doc**: add missing https Agent maxCachedSessions (Nicolas Mot…
|