diff --git a/doc/api.txt b/doc/api.txt index 40320bd593d..7d452133c56 100644 --- a/doc/api.txt +++ b/doc/api.txt @@ -1410,14 +1410,14 @@ resolution.addCallback(function (addresses, ttl, cname) { reversing.addCallback( function (domains, ttl, cname) { puts("reverse for " + a + ": " + JSON.stringify(domains)); }); - reversing.addErrback( function (code, msg) { - puts("reverse for " + a + " failed: " + msg); + reversing.addErrback( function (e) { + puts("reverse for " + a + " failed: " + e.message); }); } }); -resolution.addErrback(function (code, msg) { - puts("error: " + msg); +resolution.addErrback(function (e) { + puts("error: " + e.message); }); ------------------------------------------------------------------------- @@ -1430,8 +1430,9 @@ This function returns a promise. - on success: returns +addresses, ttl, cname+. +ttl+ (time-to-live) is an integer specifying the number of seconds this result is valid for. +cname+ is the canonical name for the query. -- on error: returns +code, msg+. +code+ is one of the error codes listed - below and +msg+ is a string describing the error in English. +- on error: Returns an instanceof Error object, where the "errno" field is one + of the error codes listed below and the "message" field is a string + describing the error in English. +dns.resolve6(domain)+:: @@ -1444,8 +1445,9 @@ Reverse resolves an ip address to an array of domain names. - on success: returns +domains, ttl, cname+. +ttl+ (time-to-live) is an integer specifying the number of seconds this result is valid for. +cname+ is the canonical name for the query. +domains+ is an array of domains. -- on error: returns +code, msg+. +code+ is one of the error codes listed - below and +msg+ is a string describing the error in English. +- on error: Returns an instanceof Error object, where the "errno" field is one + of the error codes listed below and the "message" field is a string + describing the error in English. Each DNS query can return an error code.