Lines Matching refs:address
14 for (const { address, family, scopeid } of entries) {
15 if (family === 'IPv6' && address.startsWith('fe80:')) {
16 return { address, ifname, scopeid };
24 common.skip('cannot find any IPv6 interfaces with a link local address');
26 const address = isWindows ? iface.address : `${iface.address}%${iface.ifname}`;
29 // Create a client socket for sending to the link-local address.
32 // Create the server socket listening on the link-local address.
36 const port = server.address().port;
37 client.send(message, 0, message.length, port, address);
43 // Check that the sender address is the one bound,
46 info.address,
47 isWindows ? `${iface.address}%${iface.scopeid}` : address
53 server.bind({ address });