cancel reading on unidirectional streams when the stream type is unknown

Otherwise the stream would remain open indefinitely.
This commit is contained in:
Marten Seemann 2020-12-23 15:00:01 +07:00
parent f68dfd5c3b
commit 160c11bd34
4 changed files with 22 additions and 30 deletions

View file

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