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.
55 lines
1.7 KiB
55 lines
1.7 KiB
14 years ago
|
var common = require('../common');
|
||
|
var assert = require('assert');
|
||
15 years ago
|
|
||
11 years ago
|
var fs = require('fs'),
|
||
14 years ago
|
dgram = require('dgram'), server, client,
|
||
10 years ago
|
server_port = common.PORT,
|
||
11 years ago
|
message_to_send = 'A message to send',
|
||
15 years ago
|
timer;
|
||
|
|
||
14 years ago
|
server = dgram.createSocket('udp4');
|
||
|
server.on('message', function(msg, rinfo) {
|
||
|
console.log('server got: ' + msg +
|
||
|
' from ' + rinfo.address + ':' + rinfo.port);
|
||
|
assert.strictEqual(rinfo.address, '127.0.0.1');
|
||
15 years ago
|
assert.strictEqual(msg.toString(), message_to_send.toString());
|
||
|
server.send(msg, 0, msg.length, rinfo.port, rinfo.address);
|
||
|
});
|
||
14 years ago
|
server.on('listening', function() {
|
||
15 years ago
|
var address = server.address();
|
||
14 years ago
|
console.log('server is listening on ' + address.address + ':' + address.port);
|
||
|
client = dgram.createSocket('udp4');
|
||
|
client.on('message', function(msg, rinfo) {
|
||
|
console.log('client got: ' + msg +
|
||
|
' from ' + rinfo.address + ':' + address.port);
|
||
|
assert.strictEqual(rinfo.address, '127.0.0.1');
|
||
15 years ago
|
assert.strictEqual(rinfo.port, server_port);
|
||
|
assert.strictEqual(msg.toString(), message_to_send.toString());
|
||
|
client.close();
|
||
|
server.close();
|
||
|
});
|
||
14 years ago
|
client.send(message_to_send, 0, message_to_send.length,
|
||
12 years ago
|
server_port, 'localhost', function(err) {
|
||
14 years ago
|
if (err) {
|
||
|
console.log('Caught error in client send.');
|
||
|
throw err;
|
||
|
}
|
||
|
});
|
||
|
client.on('close',
|
||
|
function() {
|
||
|
if (server.fd === null) {
|
||
|
clearTimeout(timer);
|
||
|
}
|
||
|
});
|
||
15 years ago
|
});
|
||
14 years ago
|
server.on('close', function() {
|
||
15 years ago
|
if (client.fd === null) {
|
||
|
clearTimeout(timer);
|
||
|
}
|
||
|
});
|
||
|
server.bind(server_port);
|
||
|
|
||
14 years ago
|
timer = setTimeout(function() {
|
||
|
throw new Error('Timeout');
|
||
15 years ago
|
}, 200);
|