Home
last modified time | relevance | path

Searched refs:socketPath (Results 1 – 21 of 21) sorted by relevance

/third_party/node/test/parallel/
Dtest-http-client-abort-keep-alive-queued-unix-socket.js18 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
Dtest-http-agent-getname.js44 const socketPath = path.join(tmpdir.path, 'foo', 'bar'); constant
47 socketPath field
49 `localhost:::${socketPath}`
Dtest-https-unix-socket-self-signed.js24 socketPath: common.PIPE, property
Dtest-http-client-abort-unix-socket.js21 socketPath: common.PIPE property
Dtest-http-client-pipe-end.js42 socketPath: common.PIPE, property
Dtest-http-client-response-domain.js52 socketPath: common.PIPE, property
Dtest-http-unix-socket-keep-alive.js32 socketPath: common.PIPE, property
Dtest-cluster-http-pipe.js52 http.get({ socketPath: common.PIPE, path: '/' }, common.mustCall((res) => { property
Dtest-http-unix-socket.js43 socketPath: common.PIPE, property
/third_party/node/lib/
D_http_agent.js233 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.js200 this.socketPath = options.socketPath;
/third_party/node/deps/undici/src/lib/
Dpool.js34 socketPath, property
57 socketPath, property
Dclient.js149 socketPath, property
191 if (socketPath != null && typeof socketPath !== 'string') {
260 socketPath, property
/third_party/node/deps/undici/src/lib/core/
Dconnect.js74 function buildConnector ({ maxCachedSessions, socketPath, timeout, ...opts }) { property
79 const options = { path: socketPath, ...opts }
/third_party/node/deps/undici/src/types/
Dconnector.d.ts11 socketPath?: string | null;
Dclient.d.ts52 socketPath?: string;
/third_party/node/deps/undici/src/docs/api/
DConnector.md15 * **socketPath** `string | null` (optional) - Default: `null` - An IPC endpoint, either Unix domain…
DClient.md43 * **socketPath** `string | null` (optional) - Default: `null` - An IPC endpoint, either Unix domain…
/third_party/node/deps/undici/
Dundici.js6524 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/
Dhttp.md3480 * `socketPath` {string} Unix domain socket. Cannot be used if one of `host`
/third_party/node/doc/changelogs/
DCHANGELOG_V6.md344 * \[[`18acad349c`](https://github.com/nodejs/node/commit/18acad349c)] - **http**: make socketPath w…