mirror of
https://github.com/nodejs/node.git
synced 2024-12-01 16:10:02 +01:00
d20f018dcf
PR-URL: https://github.com/nodejs/io.js/pull/1857 Reviewed-By: Roman Reiss <me@silverwind.io> Reviewed-By: Jeremiah Senkpiel <fishrock123@rocketmail.com>
40 lines
807 B
JavaScript
40 lines
807 B
JavaScript
'use strict';
|
|
const common = require('../common');
|
|
const assert = require('assert');
|
|
|
|
const dgram = require('dgram');
|
|
const client = dgram.createSocket('udp4');
|
|
const chunk = 'abc';
|
|
var recursiveCount = 0;
|
|
var received = 0;
|
|
const limit = 10;
|
|
const recursiveLimit = 100;
|
|
|
|
function onsend() {
|
|
if (recursiveCount > recursiveLimit) {
|
|
throw new Error('infinite loop detected');
|
|
}
|
|
if (received < limit) {
|
|
client.send(
|
|
chunk, 0, chunk.length, common.PORT, common.localhostIPv4, onsend);
|
|
}
|
|
recursiveCount++;
|
|
}
|
|
|
|
client.on('listening', function() {
|
|
onsend();
|
|
});
|
|
|
|
client.on('message', function(buf, info) {
|
|
received++;
|
|
if (received === limit) {
|
|
client.close();
|
|
}
|
|
});
|
|
|
|
client.on('close', common.mustCall(function() {
|
|
assert.equal(received, limit);
|
|
}));
|
|
|
|
client.bind(common.PORT);
|