vdns
1.0.0
这是一个用 V 编写的 DNS 客户端库。
支持的查询类型:
您可以从 [VPM] 或 GitHub 安装此软件包:
v install fleximus.vdns
v install --git https://github.com/fleximus/vdns
要使用vdns
来运行查询,您需要指定解析器的 IP 地址,在我们的示例中,我们使用 Cloudflare 的公共 1.1.1.1 解析器。
import fleximus.vdns
fn main () {
resolver := '1.1.1.1:53'
result := vdns. query (vdns.Query{
domain: 'gmail.com'
@type: .mx
resolver: resolver
}) or { panic ( 'Failed query' ) }
for answer in result.answers {
println ( " ${answer.name} ${answer.class} ${answer.ttl} ${answer.@type} ${answer.record} " )
}
}
该库正在开发中:请勿在生产中使用!
麻省理工学院