Prepare deadline interface

This commit is contained in:
世界 2023-04-19 21:48:54 +08:00
parent a5322850b3
commit 4382093868
No known key found for this signature in database
GPG key ID: CD109927C34A63C4
14 changed files with 86 additions and 36 deletions

View file

@ -606,6 +606,10 @@ func (c *naiveH2Conn) SetWriteDeadline(t time.Time) error {
return os.ErrInvalid
}
func (c *naiveH2Conn) NeedAdditionalReadDeadline() bool {
return true
}
func (c *naiveH2Conn) UpstreamReader() any {
return c.reader
}