dns.resolve4(hostname[, options], callback)
hostname<string> 要解析的主机名。options<Object>ttl<boolean> 获取每条记录的生存时间(TTL)值。当为true时,回调会接收到一个{ address: '1.2.3.4', ttl: 60 }对象的数组,而不是字符串数组,TTL 以秒为单位表示。
callback<Function>err<Error>addresses字符串数组 | 对象数组
使用 DNS 协议解析 hostname 的 IPv4 地址(A 记录)。传递给 callback 函数的 addresses 参数将包含一个 IPv4 地址数组(例如 ['74.125.79.104', '74.125.79.105', '74.125.79.106'])。
【Uses the DNS protocol to resolve a IPv4 addresses (A records) for the
hostname. The addresses argument passed to the callback function
will contain an array of IPv4 addresses (e.g.
['74.125.79.104', '74.125.79.105', '74.125.79.106']).】