net
net copied to clipboard
[mirror] Go supplementary network libraries
HTTP/2 server must send client connection flow control bytes back immediately on receiving the data frame. Connection flow control updates must not depend on whether data has been read by...
Should fix [52868](https://github.com/golang/go/issues/52868) and [37089](https://github.com/golang/go/issues/37089).
If a request that triggered an upgrade from HTTP/1.1 -> HTTP/2 contained a body, it would not be replayed by the server as a HTTP/2 data frame. This would result...
Fixed typo in variable name `resouce` -> `resource`
PROPFIND can walk through directories, retrieving information about each file. Unfortunately, the filesystem may deny access to the WebDAV server for various reasons, such as the file truly not being...
These methods complement the already existing AppendChild and InsertBefore methods in allowing for easy and safe manipulation of Node trees. For example code like oldChild.Parent.InsertBefore(newChild, oldChild.NextSibling) can now be written...
The existing (*Server).Handshake lacks examples of how it is used, so add runnable and testable versions of them Fixes golang/go#32866
fix https://github.com/golang/go/issues/48413