Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
24 changes: 10 additions & 14 deletions lib/dgram.js
Original file line number Diff line number Diff line change
Expand Up @@ -524,35 +524,31 @@ Socket.prototype.setBroadcast = function(arg) {
};


Socket.prototype.setTTL = function(arg) {
if (typeof arg !== 'number') {
throw new errors.TypeError('ERR_INVALID_ARG_TYPE',
'arg',
'number');
Socket.prototype.setTTL = function(ttl) {
if (typeof ttl !== 'number') {
throw new errors.TypeError('ERR_INVALID_ARG_TYPE', 'ttl', 'number', ttl);
}

var err = this._handle.setTTL(arg);
var err = this._handle.setTTL(ttl);
if (err) {
throw errnoException(err, 'setTTL');
}

return arg;
return ttl;
};


Socket.prototype.setMulticastTTL = function(arg) {
if (typeof arg !== 'number') {
throw new errors.TypeError('ERR_INVALID_ARG_TYPE',
'arg',
'number');
Socket.prototype.setMulticastTTL = function(ttl) {
if (typeof ttl !== 'number') {
throw new errors.TypeError('ERR_INVALID_ARG_TYPE', 'ttl', 'number', ttl);
}

var err = this._handle.setMulticastTTL(arg);
var err = this._handle.setMulticastTTL(ttl);
if (err) {
throw errnoException(err, 'setMulticastTTL');
}

return arg;
return ttl;
};


Expand Down
2 changes: 1 addition & 1 deletion test/parallel/test-dgram-multicast-setTTL.js
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ socket.on('listening', common.mustCall(() => {
}, common.expectsError({
code: 'ERR_INVALID_ARG_TYPE',
type: TypeError,
message: /^The "arg" argument must be of type number$/
message: 'The "ttl" argument must be of type number. Received type string'
}));

//close the socket
Expand Down
2 changes: 1 addition & 1 deletion test/parallel/test-dgram-setTTL.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ socket.on('listening', common.mustCall(() => {
}, common.expectsError({
code: 'ERR_INVALID_ARG_TYPE',
type: TypeError,
message: /^The "arg" argument must be of type number$/
message: 'The "ttl" argument must be of type number. Received type string'
}));

// TTL must be a number from > 0 to < 256
Expand Down