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.
18 lines
405 B
18 lines
405 B
10 years ago
|
'use strict';
|
||
|
const common = require('../common');
|
||
|
const assert = require('assert');
|
||
|
const dgram = require('dgram');
|
||
|
const socket = dgram.createSocket('udp4');
|
||
|
|
||
|
socket.bind(common.PORT);
|
||
|
socket.on('listening', function() {
|
||
|
var result = socket.setTTL(16);
|
||
|
assert.strictEqual(result, 16);
|
||
|
|
||
|
assert.throws(function() {
|
||
|
socket.setTTL('foo');
|
||
|
}, /Argument must be a number/);
|
||
|
|
||
|
socket.close();
|
||
|
});
|