mirror of
https://github.com/nodejs/node.git
synced 2025-05-05 15:32:15 +00:00

`test-dgram-send-callback-buffer-length` was timing out (via the 200ms timeout in the code) on FreeBSD in CI. The 200ms timeout is arbitrary and not necessary. Remove it. PR-URL: https://github.com/nodejs/node/pull/9197 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Santiago Gimeno <santiago.gimeno@gmail.com> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Luigi Pinca <luigipinca@gmail.com>
20 lines
511 B
JavaScript
20 lines
511 B
JavaScript
'use strict';
|
|
|
|
const common = require('../common');
|
|
const assert = require('assert');
|
|
|
|
const dgram = require('dgram');
|
|
const client = dgram.createSocket('udp4');
|
|
|
|
const buf = Buffer.allocUnsafe(256);
|
|
const offset = 20;
|
|
const len = buf.length - offset;
|
|
|
|
const messageSent = common.mustCall(function messageSent(err, bytes) {
|
|
assert.notStrictEqual(bytes, buf.length);
|
|
assert.strictEqual(bytes, buf.length - offset);
|
|
client.close();
|
|
});
|
|
|
|
client.send(buf, offset, len, common.PORT, '127.0.0.1', messageSent);
|