-
Notifications
You must be signed in to change notification settings - Fork 29.6k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Upgrade c-ares #1678
Upgrade c-ares #1678
Conversation
if ((status == ARES_ENODATA || status == ARES_EBADRESP) && | ||
hquery->want_family == AF_UNSPEC) { | ||
if ((status == ARES_ENODATA || status == ARES_EBADRESP || | ||
(status == ARES_SUCCESS && host && host->h_addr_list[0] == NULL)) && |
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.
Just recalling, are we going to switch io.js to use the proper error names instead of the made up one we have (ENOTFOUND
)?
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 have no love for ENOTFOUND but renaming it may result in a lot of breakage. :-/
Change looks fine to me. |
LGTM if CI is happy. |
Fixes: nodejs#1676 PR-URL: nodejs#1678 Reviewed-By: Fedor Indutny <[email protected]> Reviewed-By: Trevor Norris <[email protected]>
Provide more information in `ares_txt_reply` to coalesce chunks from the same record into one string. fix nodejs#7367
On Windows, when compiling with `UNICODE` defined, `LoadLibrary` becomes `LoadLibraryW`. When an ASCII string is passed to that function it crashes. PR-URL: nodejs#226 Reviewed-By: Bert Belder <[email protected]>
Landed in 7e1c0e7...08d0866. Thanks for the review, guys. There are some CI failures but not ones introduced by this PR, AFAICT. (Child process failures on Windows, a dgram test that has been failing for some time now. There are issues about them.) I decided to put not too much stock in the test failure on the armv7-wheezy buildbot because it always has one or two tests randomly failing (sadly.) If the failure turns out to be persistent, I'm on the hook for fixing it. |
Fixes: nodejs#1676 PR-URL: nodejs#1678 Reviewed-By: Fedor Indutny <[email protected]> Reviewed-By: Trevor Norris <[email protected]>
R=@indutny?
CI: https://jenkins-iojs.nodesource.com/view/iojs/job/iojs+any-pr+multi/661/