summaryrefslogtreecommitdiff
path: root/doc/api/dns.md
diff options
context:
space:
mode:
authorRoman Reiss <me@silverwind.io>2017-04-19 19:22:08 +0200
committerRoman Reiss <me@silverwind.io>2017-04-19 19:24:12 +0200
commitd33b3d10860d31cbb8d63fd8f6e93555d8cd1c88 (patch)
treeba15ecf4422478dcfbdd64744c5da7e73166b9ff /doc/api/dns.md
parent86a3ba0c4eb4b5226e805d1bc496b567be2e5664 (diff)
downloadandroid-node-v8-d33b3d10860d31cbb8d63fd8f6e93555d8cd1c88.tar.gz
android-node-v8-d33b3d10860d31cbb8d63fd8f6e93555d8cd1c88.tar.bz2
android-node-v8-d33b3d10860d31cbb8d63fd8f6e93555d8cd1c88.zip
doc: clarify the callback arguments of dns.resolve
PR-URL: https://github.com/nodejs/node/pull/9532 Reviewed-By: Ben Noordhuis <info@bnoordhuis.nl> Reviewed-By: James M Snell <jasnell@gmail.com> Reviewed-By: Rich Trott <rtrott@gmail.com>
Diffstat (limited to 'doc/api/dns.md')
-rw-r--r--doc/api/dns.md62
1 files changed, 33 insertions, 29 deletions
diff --git a/doc/api/dns.md b/doc/api/dns.md
index 329ff0c3ae..b667d7d6f0 100644
--- a/doc/api/dns.md
+++ b/doc/api/dns.md
@@ -167,37 +167,32 @@ dns.lookupService('127.0.0.1', 22, (err, hostname, service) => {
<!-- YAML
added: v0.1.27
-->
-- `hostname` {string}
-- `rrtype` {string}
+- `hostname` {string} Hostname to resolve.
+- `rrtype` {string} Resource record type. Default: `'A'`.
- `callback` {Function}
- `err` {Error}
- - `addresses` {string[] | Object[] | string[][] | Object}
-
-Uses the DNS protocol to resolve a hostname (e.g. `'nodejs.org'`) into an
-array of the record types specified by `rrtype`.
-
-Valid values for `rrtype` are:
-
- * `'A'` - IPV4 addresses, default
- * `'AAAA'` - IPV6 addresses
- * `'MX'` - mail exchange records
- * `'TXT'` - text records
- * `'SRV'` - SRV records
- * `'PTR'` - PTR records
- * `'NS'` - name server records
- * `'CNAME'` - canonical name records
- * `'SOA'` - start of authority record
- * `'NAPTR'` - name authority pointer record
-
-The `callback` function has arguments `(err, addresses)`. When successful,
-`addresses` will be an array, except when resolving an SOA record which returns
-an object structured in the same manner as one returned by the
-[`dns.resolveSoa()`][] method. The type of each item in `addresses` is
-determined by the record type, and described in the documentation for the
-corresponding lookup methods.
-
-On error, `err` is an [`Error`][] object, where `err.code` is
-one of the error codes listed [here](#dns_error_codes).
+ - `records` {string[] | Object[] | string[][] | Object}
+
+Uses the DNS protocol to resolve a hostname (e.g. `'nodejs.org'`) into an array
+of the resource records. The `callback` function has arguments
+`(err, records)`. When successful, `records` will be an array of resource
+records. The type and structure of individual results varies based on `rrtype`:
+
+| `rrtype` | `records` contains | Result type | Shorthand method |
+|-----------|--------------------------------|-------------|--------------------------|
+| `'A'` | IPv4 addresses (default) | {string} | [`dns.resolve4()`][] |
+| `'AAAA'` | IPv6 addresses | {string} | [`dns.resolve6()`][] |
+| `'CNAME'` | canonical name records | {string} | [`dns.resolveCname()`][] |
+| `'MX'` | mail exchange records | {Object} | [`dns.resolveMx()`][] |
+| `'NAPTR'` | name authority pointer records | {Object} | [`dns.resolveNaptr()`][] |
+| `'NS'` | name server records | {string} | [`dns.resolveNs()`][] |
+| `'PTR'` | pointer records | {string} | [`dns.resolvePtr()`][] |
+| `'SOA'` | start of authority records | {Object} | [`dns.resolveSoa()`][] |
+| `'SRV'` | service records | {Object} | [`dns.resolveSrv()`][] |
+| `'TXT'` | text records | {string} | [`dns.resolveTxt()`][] |
+
+On error, `err` is an [`Error`][] object, where `err.code` is one of the
+[DNS error codes](#dns_error_codes).
## dns.resolve4(hostname[, options], callback)
<!-- YAML
@@ -516,7 +511,16 @@ uses. For instance, _they do not use the configuration from `/etc/hosts`_.
[DNS error codes]: #dns_error_codes
[`dns.lookup()`]: #dns_dns_lookup_hostname_options_callback
+[`dns.resolve4()`]: #dns_dns_resolve4_hostname_options_callback
+[`dns.resolve6()`]: #dns_dns_resolve6_hostname_options_callback
+[`dns.resolveCname()`]: #dns_dns_resolvecname_hostname_callback
+[`dns.resolveMx()`]: #dns_dns_resolvemx_hostname_callback
+[`dns.resolveNaptr()`]: #dns_dns_resolvenaptr_hostname_callback
+[`dns.resolveNs()`]: #dns_dns_resolvens_hostname_callback
+[`dns.resolvePtr()`]: #dns_dns_resolveptr_hostname_callback
[`dns.resolveSoa()`]: #dns_dns_resolvesoa_hostname_callback
+[`dns.resolveSrv()`]: #dns_dns_resolvesrv_hostname_callback
+[`dns.resolveTxt()`]: #dns_dns_resolvetxt_hostname_callback
[`Error`]: errors.html#errors_class_error
[Implementation considerations section]: #dns_implementation_considerations
[supported `getaddrinfo` flags]: #dns_supported_getaddrinfo_flags