mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-05 21:27:35 +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
|
@ -280,6 +280,7 @@ func (s *Server) handleUnidirectionalStreams(sess quic.EarlySession) {
|
|||
sess.CloseWithError(quic.ErrorCode(errorStreamCreationError), "")
|
||||
return
|
||||
default:
|
||||
str.CancelRead(quic.ErrorCode(errorStreamCreationError))
|
||||
return
|
||||
}
|
||||
f, err := parseNextFrame(str)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue