mirror of https://github.com/lukechilds/node.git
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.
27 lines
571 B
27 lines
571 B
var common = require('../common');
|
|
var assert = require('assert');
|
|
|
|
var fs = require('fs');
|
|
var dgram = require('dgram');
|
|
var callbacks = 0;
|
|
var client, timer, buf, len, offset;
|
|
|
|
|
|
client = dgram.createSocket('udp4');
|
|
|
|
buf = new Buffer(256);
|
|
offset = 20;
|
|
|
|
len = buf.length - offset;
|
|
|
|
|
|
client.send(buf, offset, len, common.PORT, "127.0.0.1", function (err, bytes) {
|
|
assert.notEqual(bytes, buf.length);
|
|
assert.equal(bytes, buf.length - offset);
|
|
clearTimeout(timer);
|
|
client.close();
|
|
});
|
|
|
|
timer = setTimeout(function() {
|
|
throw new Error('Timeout');
|
|
}, 200);
|
|
|