Re: [go-nuts] go1.11 no longer supports compressed hostnames in SRV lookup replies

2018-09-06 Thread mikioh . mikioh
On Friday, September 7, 2018 at 5:43:24 AM UTC+9, Jason Newman wrote: > > I pinged a couple of people associated with kube-dns and they were able to > reproduce the issue on the latest kube-dns release (1.14.10). They are > planning on tagging a new release of kube-dns that includes an

Re: [go-nuts] go1.11 no longer supports compressed hostnames in SRV lookup replies

2018-08-31 Thread mikioh . mikioh
On Friday, August 31, 2018 at 2:54:08 PM UTC+9, Jason Newman wrote: > > Is it worth creating an issue around this? We have extracted the DNS > client from `net` and are currently using it with the compressed flag > enabled to allow compressed hostnames - the behavior that existed in go > 1.10

[go-nuts] Re: help with using crc32.Update for BE data.

2018-08-22 Thread mikioh . mikioh
looks like the hash/crc32 package in the standard library focuses on the processing reversed bits, as the opposite of normal bits as defined in https://tools.ietf.org/html/rfc4326#section-4.6. On Sunday, August 19, 2018 at 8:58:05 AM UTC+9, kortschak wrote: > > information (though intuitively

[go-nuts] Re: Is the Go build for 1.9.2 (or maybe 1.4) meant to create $HOME/pprof/?

2017-10-31 Thread mikioh . mikioh
The details: https://go-review.googlesource.com/c/go/+/37652 and https://github.com/google/pprof/issues/107 -- You received this message because you are subscribed to the Google Groups "golang-nuts" group. To unsubscribe from this group and stop receiving emails from it, send an email to

Re: [golang-dev] Re: [go-nuts] net: ReadMsg and reading error queue

2017-07-18 Thread mikioh . mikioh
>From go1.9, the {TCP,UDP,IP,Unix}Conn of net package satisfies the RawConn interface of syscall package. I think you can implement own platform dependent stuff by using the new exposed API. -- You received this message because you are subscribed to the Google Groups "golang-nuts" group. To

Re: [go-nuts] Re: http.Server.Shutdown() crashing?

2017-07-09 Thread mikioh . mikioh
calling Shutdown method of http.Server in a registered HTTP handler probably may prevent the package internal helpers from marking the inflight connection idle. so you can write like the following: http.HandleFunc("/stop", func(w http.ResponseWriter, r *http.Request) { fmt.Fprintf(w,

[go-nuts] Re: Any golang support of Multicast from specific source in Windows?

2016-12-11 Thread mikioh . mikioh
looks like windows vista or above supports the required api. windows port stuff in net and x/net/{ipv4,ipv6} packages still lack tons of control knobs. feel free to send a patch for review if you'd like. thanks. cf: https://github.com/golang/go/wiki#contributing-to-the-go-project On Monday,

[go-nuts] Re: golang.org/x/net/ipv4 windows support

2016-08-20 Thread mikioh . mikioh
see golang.org/issues/7175 and golang.org/issues/9252. -- You received this message because you are subscribed to the Google Groups "golang-nuts" group. To unsubscribe from this group and stop receiving emails from it, send an email to golang-nuts+unsubscr...@googlegroups.com. For more