Home
last modified time | relevance | path

Searched refs:localhostIPv4 (Results 1 – 25 of 53) sorted by relevance

123

/third_party/node/test/parallel/
Dtest-net-client-bind-twice.js10 server1.listen(0, common.localhostIPv4, common.mustCall(() => {
12 server2.listen(0, common.localhostIPv4, common.mustCall(() => {
14 host: common.localhostIPv4,
16 localAddress: common.localhostIPv4,
Dtest-net-local-address-port.js28 assert.strictEqual(socket.localAddress, common.localhostIPv4);
37 server.listen(0, common.localhostIPv4, function() {
39 .port, common.localhostIPv4);
Dtest-tls-wrap-econnreset-localaddress.js20 localAddress: common.localhostIPv4
21 }, common.localhostIPv4)
27 assert.strictEqual(e.localAddress, common.localhostIPv4);
Dtest-net-dns-custom-lookup.js13 const address = addressType === 4 ? common.localhostIPv4 : '::1';
33 cb(null, [{ address: common.localhostIPv4, family: 4 }]);
35 cb(null, common.localhostIPv4, 4);
Dtest-http2-server-session-destroy.js9 server.listen(0, common.localhostIPv4, common.mustCall(() => {
18 const host = common.localhostIPv4;
Dtest-http-flush-response-headers.js13 server.listen(0, common.localhostIPv4, function() {
16 host: common.localhostIPv4,
Dtest-cluster-worker-wait-server-close.js15 }).listen(0, common.localhostIPv4);
37 const socket = net.createConnection(address.port, common.localhostIPv4);
Dtest-net-socket-local-address.js25 server.listen(0, common.localhostIPv4, connect);
37 client.connect(server.address().port, common.localhostIPv4, () => {
Dtest-tls-wrap-econnreset.js17 tls.connect(port, common.localhostIPv4)
21 assert.strictEqual(e.host, common.localhostIPv4);
Dtest-dgram-create-socket-handle-fd.js16 const err = _createSocketHandle(common.localhostIPv4, 0, 'udp4', 42);
24 const err = rawHandle.bind(common.localhostIPv4, 0, 0);
Dtest-tls-getprotocol.js27 .listen(0, common.localhostIPv4, function() {
31 host: common.localhostIPv4,
Dtest-http-request-dont-override-options.js22 hostname: common.localhostIPv4,
34 assert.strictEqual(options.hostname, common.localhostIPv4);
Dtest-dgram-udp4.js30 assert.strictEqual(rinfo.address, common.localhostIPv4);
38 assert.strictEqual(rinfo.address, common.localhostIPv4);
Dtest-dgram-address.js34 assert.strictEqual(address.address, common.localhostIPv4);
47 socket.bind(0, common.localhostIPv4);
Dtest-repl-require.js22 const host = common.localhostIPv4;
52 const host = common.localhostIPv4;
Dtest-dgram-send-error.js56 assert.strictEqual(err.address, common.localhostIPv4);
68 socket.send('foo', port, common.localhostIPv4, callback);
Dtest-domain-abort-on-uncaught.js97 server.listen(0, common.localhostIPv4, function() {
98 const conn = net.connect(this.address().port, common.localhostIPv4);
Dtest-net-connect-immediate-destroy.js8 const socket = net.connect(port, common.localhostIPv4, common.mustNotCall());
Dtest-net-connect-reset-before-connected.js8 const socket = net.connect(port, common.localhostIPv4, common.mustNotCall());
/third_party/node/test/sequential/
Dtest-child-process-pass-fd.js80 server.listen(0, common.localhostIPv4, () => {
82 socket = net.connect(port, common.localhostIPv4, socketConnected).unref();
Dtest-net-GH-5504.js55 }).listen(common.PORT, common.localhostIPv4, function() {
63 host: common.localhostIPv4,
Dtest-net-server-address.js35 .listen(common.PORT + 1, common.localhostIPv4, common.mustCall(() => {
37 assert.strictEqual(address4.address, common.localhostIPv4);
/third_party/node/test/addons/openssl-key-engine/
Dtest.js35 })).listen(0, common.localhostIPv4, common.mustCall(() => {
38 host: common.localhostIPv4,
/third_party/node/test/addons/openssl-client-cert-engine/
Dtest.js35 })).listen(0, common.localhostIPv4, common.mustCall(() => {
38 host: common.localhostIPv4,
/third_party/node/test/common/
Dindex.js202 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;

123