net
net copied to clipboard
[mirror] Go supplementary network libraries
Adds iterators for the parents, immediate children, and all children of a Node respectively. Fixes golang/go#62113
I encountered an issue when using html.Parse that triggers the following call chain: html.Parse -> ParseWithOptions -> p.parse() -> p.tokenizer.Next() -> readByte(). In the readByte() function, there's a logic block:...
When request context is canceled or expired, do not retry on dialing to the server. Fixes golang/go#67665
Fixes golang/go#69951
For golang/go#49918
In the current godoc, we cannot see the description about how "h2c connection" is detected by h2c package so I need to read the code to see. Actually this part...
fixes golang/go#68729
`SetReuseFrames` has been shown to improve the performance of go-grpc, so I believe it can similarly enhance the performance of HTTP server/client. For https://github.com/golang/go/issues/68352