/third_party/node/test/parallel/ |
D | test-net-client-bind-twice.js | 10 server1.listen(0, common.localhostIPv4, common.mustCall(() => { 12 server2.listen(0, common.localhostIPv4, common.mustCall(() => { 14 host: common.localhostIPv4, 16 localAddress: common.localhostIPv4,
|
D | test-net-local-address-port.js | 28 assert.strictEqual(socket.localAddress, common.localhostIPv4); 37 server.listen(0, common.localhostIPv4, function() { 39 .port, common.localhostIPv4);
|
D | test-tls-wrap-econnreset-localaddress.js | 20 localAddress: common.localhostIPv4 21 }, common.localhostIPv4) 27 assert.strictEqual(e.localAddress, common.localhostIPv4);
|
D | test-net-dns-custom-lookup.js | 13 const address = addressType === 4 ? common.localhostIPv4 : '::1'; 33 cb(null, [{ address: common.localhostIPv4, family: 4 }]); 35 cb(null, common.localhostIPv4, 4);
|
D | test-http2-server-session-destroy.js | 9 server.listen(0, common.localhostIPv4, common.mustCall(() => { 18 const host = common.localhostIPv4;
|
D | test-http-flush-response-headers.js | 13 server.listen(0, common.localhostIPv4, function() { 16 host: common.localhostIPv4,
|
D | test-cluster-worker-wait-server-close.js | 15 }).listen(0, common.localhostIPv4); 37 const socket = net.createConnection(address.port, common.localhostIPv4);
|
D | test-net-socket-local-address.js | 25 server.listen(0, common.localhostIPv4, connect); 37 client.connect(server.address().port, common.localhostIPv4, () => {
|
D | test-tls-wrap-econnreset.js | 17 tls.connect(port, common.localhostIPv4) 21 assert.strictEqual(e.host, common.localhostIPv4);
|
D | test-dgram-create-socket-handle-fd.js | 16 const err = _createSocketHandle(common.localhostIPv4, 0, 'udp4', 42); 24 const err = rawHandle.bind(common.localhostIPv4, 0, 0);
|
D | test-tls-getprotocol.js | 27 .listen(0, common.localhostIPv4, function() { 31 host: common.localhostIPv4,
|
D | test-http-request-dont-override-options.js | 22 hostname: common.localhostIPv4, 34 assert.strictEqual(options.hostname, common.localhostIPv4);
|
D | test-dgram-udp4.js | 30 assert.strictEqual(rinfo.address, common.localhostIPv4); 38 assert.strictEqual(rinfo.address, common.localhostIPv4);
|
D | test-dgram-address.js | 34 assert.strictEqual(address.address, common.localhostIPv4); 47 socket.bind(0, common.localhostIPv4);
|
D | test-repl-require.js | 22 const host = common.localhostIPv4; 52 const host = common.localhostIPv4;
|
D | test-dgram-send-error.js | 56 assert.strictEqual(err.address, common.localhostIPv4); 68 socket.send('foo', port, common.localhostIPv4, callback);
|
D | test-domain-abort-on-uncaught.js | 97 server.listen(0, common.localhostIPv4, function() { 98 const conn = net.connect(this.address().port, common.localhostIPv4);
|
D | test-net-connect-immediate-destroy.js | 8 const socket = net.connect(port, common.localhostIPv4, common.mustNotCall());
|
D | test-net-connect-reset-before-connected.js | 8 const socket = net.connect(port, common.localhostIPv4, common.mustNotCall());
|
/third_party/node/test/sequential/ |
D | test-child-process-pass-fd.js | 80 server.listen(0, common.localhostIPv4, () => { 82 socket = net.connect(port, common.localhostIPv4, socketConnected).unref();
|
D | test-net-GH-5504.js | 55 }).listen(common.PORT, common.localhostIPv4, function() { 63 host: common.localhostIPv4,
|
D | test-net-server-address.js | 35 .listen(common.PORT + 1, common.localhostIPv4, common.mustCall(() => { 37 assert.strictEqual(address4.address, common.localhostIPv4);
|
/third_party/node/test/addons/openssl-key-engine/ |
D | test.js | 35 })).listen(0, common.localhostIPv4, common.mustCall(() => { 38 host: common.localhostIPv4,
|
/third_party/node/test/addons/openssl-client-cert-engine/ |
D | test.js | 35 })).listen(0, common.localhostIPv4, common.mustCall(() => { 38 host: common.localhostIPv4,
|
/third_party/node/test/common/ |
D | index.js | 202 let localhostIPv4 = null; variable 979 get localhostIPv4() { getter 980 if (localhostIPv4 !== null) return localhostIPv4; 987 localhostIPv4 = process.env.LOCALHOST; 995 if (localhostIPv4 === null) localhostIPv4 = '127.0.0.1'; 997 return localhostIPv4;
|