We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
This library doesn't seem to resolve multicast dns names, while the builtin dns module does.
Test script:
var dns = require('native-dns'); var builtinDns = require('dns'); var resolve = function(domain) { console.log("resolving " + domain); builtinDns.lookup(domain, 4, function(err, address) { console.log("builtin module returned", err, address); }); dns.lookup(domain, 4, function(err, address) { console.log("native module returned", err, address); }); }; resolve('nixos-vm1.local');
output:
resolving nixos-vm1.local native module returned { [Error: getaddrinfo ENOTFOUND] code: 'ENOTFOUND', errno: 'ENOTFOUND', syscall: 'getaddrinfo' } undefined builtin module returned null 192.168.1.109
Running on Linux (fedora 21, x86_64) with avahi-daemon and NetworkManager
The text was updated successfully, but these errors were encountered:
No branches or pull requests
This library doesn't seem to resolve multicast dns names, while the builtin dns module does.
Test script:
output:
Running on Linux (fedora 21, x86_64) with avahi-daemon and NetworkManager
The text was updated successfully, but these errors were encountered: