mirror of
https://github.com/nodejs/node.git
synced 2024-12-01 16:10:02 +01:00
d289678352
Removed common.PORT from test-dgram-close-in-listening, test-dgram-close-is-not-callback, test-dgram-close, test-dgram-exclusive-implicit-bind and test-dgram-oob-buffer in order to eliminate the possibility of port collision. Refs: https://github.com/nodejs/node/issues/12376 PR-URL: https://github.com/nodejs/node/pull/12623 Reviewed-By: Anna Henningsen <anna@addaleax.net>
22 lines
588 B
JavaScript
22 lines
588 B
JavaScript
'use strict';
|
|
const common = require('../common');
|
|
const dgram = require('dgram');
|
|
|
|
const buf = Buffer.alloc(1024, 42);
|
|
|
|
const socket = dgram.createSocket('udp4');
|
|
|
|
// get a random port for send
|
|
const portGetter = dgram.createSocket('udp4')
|
|
.bind(0, 'localhost', common.mustCall(() => {
|
|
socket.send(buf, 0, buf.length,
|
|
portGetter.address().port,
|
|
portGetter.address().address);
|
|
|
|
// if close callback is not function, ignore the argument.
|
|
socket.close('bad argument');
|
|
portGetter.close();
|
|
|
|
socket.on('close', common.mustCall());
|
|
}));
|