Merge pull request #2952 from lucas-clemente/reset-h3-uni-stream-when-type-unknown

cancel reading on unidirectional streams when the stream type is unknown
This commit is contained in:
Marten Seemann 2020-12-29 07:42:24 +07:00 committed by GitHub
commit b47fe87e51
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 22 additions and 30 deletions

View file

@ -160,6 +160,7 @@ func (c *client) handleUnidirectionalStreams() {
c.session.CloseWithError(quic.ErrorCode(errorIDError), "")
return
default:
str.CancelRead(quic.ErrorCode(errorStreamCreationError))
return
}
f, err := parseNextFrame(str)