1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-06-10 09:50:43 +00:00
v2fly/infra/conf/dns_bootstrap_android.go

25 lines
469 B
Go

// +build android
package conf
import (
"context"
"net"
)
func init() {
const bootstrapDNS = "8.8.8.8:53"
var dialer net.Dialer
net.DefaultResolver = &net.Resolver{
PreferGo: true,
Dial: func(context context.Context, _, _ string) (net.Conn, error) {
conn, err := dialer.DialContext(context, "udp", bootstrapDNS)
if err != nil {
return nil, err
}
return conn, nil
},
}
newError("Bootstrap DNS: ", bootstrapDNS).AtWarning().WriteToLog()
}