We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
parallel/test-dgram-udp6-link-local-address
1 parent e808366 commit 3c796f8Copy full SHA for 3c796f8
test/parallel/test-dgram-udp6-link-local-address.js
@@ -12,7 +12,7 @@ const { isWindows } = common;
12
function linklocal() {
13
for (const [ifname, entries] of Object.entries(os.networkInterfaces())) {
14
for (const { address, family, scopeid } of entries) {
15
- if (family === 'IPv6' && address.startsWith('fe80:')) {
+ if (family === 6 && address.startsWith('fe80:')) {
16
return { address, ifname, scopeid };
17
}
18
0 commit comments