Skip to content
Closed
Changes from 1 commit
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
5bef0de
dns: default to verbatim=true in dns.lookup()
bnoordhuis Jan 29, 2020
4be87a0
Fixes for IPv6 compatibility; new const 'common.localhostIP'
treysis Mar 10, 2021
43d1492
Update test-net-dns-lookup.js
treysis Mar 13, 2021
beb6420
Update test-net-dns-lookup.js
treysis Mar 13, 2021
604366c
Fix test-net-dns-lookup.js
treysis Mar 13, 2021
1bb0e55
Apply suggestions from code review
treysis Mar 13, 2021
16a1682
IPv6 fixes
treysis Mar 14, 2021
178683c
Update inspector-helper.js
treysis Mar 14, 2021
2b67c17
Revert "Fixes for IPv6 compatibility; new const 'common.localhostIP'"
treysis Mar 16, 2021
4b06383
Update test-net-better-error-messages-port.js
treysis Mar 16, 2021
6340f13
Test suite fixes. Hardcode localhost IPv4.
treysis Mar 16, 2021
2f7edf0
More localhost/127.0.0.1 fixes.
treysis Mar 16, 2021
75bd959
Update test-net-pingpong.js
treysis Mar 16, 2021
a19f8ec
Update test/parallel/test-net-writable.js
treysis Mar 20, 2021
0232a4a
Update test-net-writable.js
treysis Mar 24, 2021
2ef88c7
Update test-net-writable.js
treysis Mar 24, 2021
98b3ffb
Update test-net-writable.js
treysis Mar 24, 2021
7a0e447
Update test-net-writable.js
treysis Mar 24, 2021
5037efc
Update parallel.status
treysis Mar 24, 2021
787dc69
Update test-net-connect-options-port.js
treysis Mar 24, 2021
26f7f45
Update parallel.status
treysis Mar 24, 2021
269eda7
Update test-net-connect-options-port.js
treysis Mar 24, 2021
1928b44
Update parallel.status
treysis Mar 24, 2021
5557b85
Updated from review
treysis Mar 25, 2021
bccf676
Update test-net-remote-address-port.js
treysis Mar 26, 2021
0c8be88
Update test/parallel/test-net-remote-address-port.js
treysis Mar 26, 2021
7cae409
Update test-net-better-error-messages-port.js
treysis Mar 26, 2021
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update test-net-remote-address-port.js
  • Loading branch information
treysis authored Mar 26, 2021
commit bccf676b1c7144140bbd61911b46a850beb48295
2 changes: 1 addition & 1 deletion test/parallel/test-net-remote-address-port.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ const net = require('net');
let conns_closed = 0;

const remoteAddrCandidates = [ common.localhostIPv4 ];
if (common.hasIPv6) remoteAddrCandidates.push('::ffff:127.0.0.1');
if (common.hasIPv6) remoteAddrCandidates.push('::1', '::ffff:127.0.0.1');

const remoteFamilyCandidates = ['IPv4'];
if (common.hasIPv6) remoteFamilyCandidates.push('IPv6');
Expand Down