You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

8 lines
180 B

'use strict';
require('../common');
const net = require('net');
// Connect to something that we need to DNS resolve
const c = net.createConnection(80, 'google.com');
c.destroy();