summaryrefslogtreecommitdiff
path: root/vendor/golang.org/x/net/http2/write.go
diff options
context:
space:
mode:
authorLibravatar dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>2024-10-07 12:02:26 +0000
committerLibravatar GitHub <noreply@github.com>2024-10-07 12:02:26 +0000
commit33bd97a535834de4cec1b331ed511cb1ea49c4fe (patch)
treeaeaf0edf99c78f630456b8b167982c613138133f /vendor/golang.org/x/net/http2/write.go
parentupdate go-ffmpreg to v0.3.1 (pulls in latest wazero too) (#3398) (diff)
downloadgotosocial-33bd97a535834de4cec1b331ed511cb1ea49c4fe.tar.xz
[chore]: Bump golang.org/x/net from 0.29.0 to 0.30.0 (#3402)
Diffstat (limited to 'vendor/golang.org/x/net/http2/write.go')
-rw-r--r--vendor/golang.org/x/net/http2/write.go10
1 files changed, 10 insertions, 0 deletions
diff --git a/vendor/golang.org/x/net/http2/write.go b/vendor/golang.org/x/net/http2/write.go
index 33f61398a..6ff6bee7e 100644
--- a/vendor/golang.org/x/net/http2/write.go
+++ b/vendor/golang.org/x/net/http2/write.go
@@ -131,6 +131,16 @@ func (se StreamError) writeFrame(ctx writeContext) error {
func (se StreamError) staysWithinBuffer(max int) bool { return frameHeaderLen+4 <= max }
+type writePing struct {
+ data [8]byte
+}
+
+func (w writePing) writeFrame(ctx writeContext) error {
+ return ctx.Framer().WritePing(false, w.data)
+}
+
+func (w writePing) staysWithinBuffer(max int) bool { return frameHeaderLen+len(w.data) <= max }
+
type writePingAck struct{ pf *PingFrame }
func (w writePingAck) writeFrame(ctx writeContext) error {