26async fn main() {
27// use google and alibaba dns server
28set_custom_dns_server(&["8.8.8.8".parse().unwrap(), "233.5.5.5".parse().unwrap()]).unwrap();
29// get http response
30custom_dns_tcp_stream_read("httpbin.org:80").await;
31// get bilibili.com addr
32custom_dns_resolver("bilibili.com").await;
33}