-
Notifications
You must be signed in to change notification settings - Fork 29.6k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
dgram: handle default address case when offset and length are specified
Fixes a regression introduced by: #4374. Adds a new test to avoid similar issue in the future. The test is disabled on windows, because this feature never worked there. Fixes: #5398 Reviewed-By: Roman Reiss <me@silverwind.io> Reviewed-By: Rod Vagg <rod@vagg.org> Reviewed-By: Evan Lucas <evanlucas@me.com>
- Loading branch information
Showing
2 changed files
with
51 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
'use strict'; | ||
|
||
const common = require('../common'); | ||
const assert = require('assert'); | ||
const dgram = require('dgram'); | ||
|
||
if (common.isWindows) { | ||
// on Windows this test will fail | ||
// see https://github.com/nodejs/node/pull/5407 | ||
console.log('1..0 # Skipped: This test does not apply on Windows.'); | ||
return; | ||
} | ||
|
||
const client = dgram.createSocket('udp4'); | ||
|
||
const timer = setTimeout(function() { | ||
throw new Error('Timeout'); | ||
}, common.platformTimeout(2000)); | ||
|
||
const toSend = [new Buffer(256), new Buffer(256), new Buffer(256), 'hello']; | ||
|
||
toSend[0].fill('x'); | ||
toSend[1].fill('y'); | ||
toSend[2].fill('z'); | ||
|
||
client.on('listening', function() { | ||
client.send(toSend[0], 0, toSend[0].length, common.PORT); | ||
client.send(toSend[1], common.PORT); | ||
client.send([toSend[2]], common.PORT); | ||
client.send(toSend[3], 0, toSend[3].length, common.PORT); | ||
}); | ||
|
||
client.on('message', function(buf, info) { | ||
const expected = toSend.shift().toString(); | ||
assert.ok(buf.toString() === expected, 'message was received correctly'); | ||
|
||
if (toSend.length === 0) { | ||
client.close(); | ||
clearTimeout(timer); | ||
} | ||
}); | ||
|
||
client.bind(common.PORT); |
725ffdb
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This seems to have landed without a PR-URL 😭
725ffdb
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do you happen to know the PR?
725ffdb
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
#5407
725ffdb
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I am now seeing that this is don't land... adjusting audit thread
725ffdb
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'm sorry :/ My bad. Have you fixed this? May I help anyhow?
725ffdb
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@mcollina .. no worries, we've all done it :-) at this point there's nothing to do.