dns.resolve6(hostname[, options], callback)
-
hostname
<string> 要解析的主机名。¥
hostname
<string> Host name to resolve. -
options
<Object>-
ttl
<boolean> 检索每条记录的生存时间值 (TTL)。当为true
时,回调接收{ address: '0:1:2:3:4:5:6:7', ttl: 60 }
对象数组而不是字符串数组,TTL 以秒表示。¥
ttl
<boolean> Retrieve the Time-To-Live value (TTL) of each record. Whentrue
, the callback receives an array of{ address: '0:1:2:3:4:5:6:7', ttl: 60 }
objects rather than an array of strings, with the TTL expressed in seconds.
-
-
callback
<Function>-
err
<Error> -
addresses
<string[]> | <Object[]>
-
使用域名系统协议为 hostname
解析 IPv6 地址(AAAA
记录)。传给 callback
函数的 addresses
参数将包含 IPv6 地址数组。
¥Uses the DNS protocol to resolve IPv6 addresses (AAAA
records) for the
hostname
. The addresses
argument passed to the callback
function
will contain an array of IPv6 addresses.