Improve: replace bootstrap dns (#2080)

This commit is contained in:
gVisor bot 2022-04-16 15:31:26 +08:00
parent 508f3097e9
commit 6f3aafafe4

View file

@ -0,0 +1,12 @@
//go:build aix || darwin || dragonfly || freebsd || linux || netbsd || openbsd || solaris
package resolver
import _ "unsafe"
//go:linkname defaultNS net.defaultNS
var defaultNS []string
func init() {
defaultNS = []string{"114.114.114.114:53", "8.8.8.8:53"}
}