/third_party/node/test/parallel/ |
D | test-http-client-abort-keep-alive-queued-unix-socket.js | 18 const socketPath = common.PIPE; constant 22 server.listen(socketPath, common.mustCall(() => { 28 http.get({ agent, socketPath }, (res) => res.resume()); field 30 const req = http.get({ agent, socketPath }, common.mustNotCall()); field 33 http.get({ agent, socketPath }, common.mustCall((res) => { field
|
D | test-http-agent-getname.js | 44 const socketPath = path.join(tmpdir.path, 'foo', 'bar'); constant 47 socketPath field 49 `localhost:::${socketPath}`
|
D | test-https-unix-socket-self-signed.js | 24 socketPath: common.PIPE, property
|
D | test-http-client-abort-unix-socket.js | 21 socketPath: common.PIPE property
|
D | test-http-client-pipe-end.js | 42 socketPath: common.PIPE, property
|
D | test-http-client-response-domain.js | 52 socketPath: common.PIPE, property
|
D | test-http-unix-socket-keep-alive.js | 32 socketPath: common.PIPE, property
|
D | test-cluster-http-pipe.js | 52 http.get({ socketPath: common.PIPE, path: '/' }, common.mustCall((res) => { property
|
D | test-http-unix-socket.js | 43 socketPath: common.PIPE, property
|
/third_party/node/lib/ |
D | _http_agent.js | 233 if (options.socketPath) 234 name += `:${options.socketPath}`; 252 if (options.socketPath) 253 options.path = options.socketPath; 312 if (options.socketPath) 313 options.path = options.socketPath;
|
D | _http_client.js | 200 this.socketPath = options.socketPath;
|
/third_party/node/deps/undici/src/lib/ |
D | pool.js | 34 socketPath, property 57 socketPath, property
|
D | client.js | 149 socketPath, property 191 if (socketPath != null && typeof socketPath !== 'string') { 260 socketPath, property
|
/third_party/node/deps/undici/src/lib/core/ |
D | connect.js | 74 function buildConnector ({ maxCachedSessions, socketPath, timeout, ...opts }) { property 79 const options = { path: socketPath, ...opts }
|
/third_party/node/deps/undici/src/types/ |
D | connector.d.ts | 11 socketPath?: string | null;
|
D | client.d.ts | 52 socketPath?: string;
|
/third_party/node/deps/undici/src/docs/api/ |
D | Connector.md | 15 * **socketPath** `string | null` (optional) - Default: `null` - An IPC endpoint, either Unix domain…
|
D | Client.md | 43 * **socketPath** `string | null` (optional) - Default: `null` - An IPC endpoint, either Unix domain…
|
/third_party/node/deps/undici/ |
D | undici.js | 6524 function buildConnector({ allowH2, maxCachedSessions, socketPath, timeout, ...opts }) { property 6528 const options = { path: socketPath, ...opts }; 7271 socketPath, property 7306 if (socketPath != null && typeof socketPath !== "string") { 7356 socketPath, property 8894 socketPath, property 8915 socketPath, property
|
/third_party/node/doc/api/ |
D | http.md | 3480 * `socketPath` {string} Unix domain socket. Cannot be used if one of `host`
|
/third_party/node/doc/changelogs/ |
D | CHANGELOG_V6.md | 344 * \[[`18acad349c`](https://github.com/nodejs/node/commit/18acad349c)] - **http**: make socketPath w…
|