net icon indicating copy to clipboard operation
net copied to clipboard

[mirror] Go supplementary network libraries

Results 59 net issues
Sort by recently updated
recently updated
newest added

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

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...

`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