mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-04 20:57:36 +03:00
close all streams when closing the IETF QUIC streams map
This commit is contained in:
parent
bffa2cd621
commit
f8d28a96fe
9 changed files with 82 additions and 16 deletions
|
@ -123,6 +123,9 @@ func (m *incomingUniStreamsMap) DeleteStream(id protocol.StreamID) error {
|
|||
func (m *incomingUniStreamsMap) CloseWithError(err error) {
|
||||
m.mutex.Lock()
|
||||
m.closeErr = err
|
||||
for _, str := range m.streams {
|
||||
str.closeForShutdown(err)
|
||||
}
|
||||
m.mutex.Unlock()
|
||||
m.cond.Broadcast()
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue