[go-nuts] Different result in go1.6.3 and 1.7rc2

2016-07-20 Thread Runix
I use the library github.com/jmckaskill/gokerb/khttp in its code (short code): package main import ( "log" "net" ) func main() { cname, addrs, err := net.LookupSRV("kerberos", "udp", "DOMAIN.LOCAL") log.Printf("cname: %#v\n\naddrs: %#v\n---\nerr: %#v", cname, addrs, err)

Re: [go-nuts] Different result in go1.6.3 and 1.7rc2

2016-07-20 Thread Runix
compared to local file > (that is, /etc/hosts) lookups." > > On 20/07/2016 08:20, Runix wrote: > > I use the library github.com/jmckaskill/gokerb/khttp in its code (short > code): > > package main > import ( > "log" "net") > func