mirror of
https://github.com/nodejs/node.git
synced 2025-05-06 21:35:34 +00:00

Manually fix issues that eslint --fix couldn't do automatically. PR-URL: https://github.com/nodejs/node/pull/10685 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Roman Reiss <me@silverwind.io>
25 lines
695 B
JavaScript
25 lines
695 B
JavaScript
'use strict';
|
|
// Ensure that if a dgram socket is closed before the DNS lookup completes, it
|
|
// won't crash.
|
|
|
|
const common = require('../common');
|
|
const assert = require('assert');
|
|
const dgram = require('dgram');
|
|
|
|
const buf = Buffer.alloc(1024, 42);
|
|
|
|
let socket = dgram.createSocket('udp4');
|
|
const handle = socket._handle;
|
|
|
|
socket.send(buf, 0, buf.length, common.PORT, 'localhost');
|
|
assert.strictEqual(socket.close(common.mustCall(function() {})), socket);
|
|
socket.on('close', common.mustCall(function() {}));
|
|
socket = null;
|
|
|
|
// Verify that accessing handle after closure doesn't throw
|
|
setImmediate(function() {
|
|
setImmediate(function() {
|
|
console.log('Handle fd is: ', handle.fd);
|
|
});
|
|
});
|