Closed
Description
https://golang.org/cl/8945 changed to using the native Go stub resolver for most systems. Darwin was excluded, here, due to firewall warnings.
Is this still an issue?
On my 10.11 system with the firewall enabled this test program doesn't produce any warnings, even with cgo disabled:
package main
import (
"fmt"
"net"
)
func main() {
ns, err := net.LookupHost("www.google.com")
if err != nil {
panic(err)
}
fmt.Println(ns)
}
% CGO_ENABLED=0 GODEBUG=netdns=2 go run main.go
go package net: built with netgo build tag; using Go's DNS resolver
go package net: hostLookupOrder(www.google.com) = files,dns
[216.58.192.164 2607:f8b0:4009:80e::2004]
(nothing pops up when running)
There are probably other reasons to conditionally exclude Darwin for now, such as if /etc/resolver config is used (#12524), but perhaps removing this blanket condition could be a start.