summaryrefslogtreecommitdiff
path: root/lib/dns.js
diff options
context:
space:
mode:
Diffstat (limited to 'lib/dns.js')
-rw-r--r--lib/dns.js8
1 files changed, 4 insertions, 4 deletions
diff --git a/lib/dns.js b/lib/dns.js
index a993593810..4767acbab6 100644
--- a/lib/dns.js
+++ b/lib/dns.js
@@ -181,7 +181,7 @@ function onlookupservice(err, host, service) {
// lookupService(address, port, callback)
-exports.lookupService = function(host, port, callback) {
+exports.lookupService = function lookupService(host, port, callback) {
if (arguments.length !== 3)
throw new Error('Invalid arguments');
@@ -257,7 +257,7 @@ exports.resolveSoa = resolveMap.SOA = resolver('querySoa');
exports.reverse = resolver('getHostByAddr');
-exports.resolve = function(hostname, type_, callback_) {
+exports.resolve = function resolve(hostname, type_, callback_) {
var resolver, callback;
if (typeof type_ === 'string') {
resolver = resolveMap[type_];
@@ -277,12 +277,12 @@ exports.resolve = function(hostname, type_, callback_) {
};
-exports.getServers = function() {
+exports.getServers = function getServers() {
return cares.getServers();
};
-exports.setServers = function(servers) {
+exports.setServers = function setServers(servers) {
// cache the original servers because in the event of an error setting the
// servers cares won't have any servers available for resolution
const orig = cares.getServers();