mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 20:57:36 +03:00
cancel reading on unidirectional streams when the stream type is unknown
Otherwise the stream would remain open indefinitely.
This commit is contained in:
parent
f68dfd5c3b
commit
160c11bd34
4 changed files with 22 additions and 30 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue