mirror of
https://github.com/refraction-networking/uquic.git
synced 2025-04-05 21:27:35 +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
11
streams_map_generic_helper.go
Normal file
11
streams_map_generic_helper.go
Normal file
|
@ -0,0 +1,11 @@
|
|||
package quic
|
||||
|
||||
import "github.com/cheekybits/genny/generic"
|
||||
|
||||
// In the auto-generated streams maps, we need to be able to close the streams.
|
||||
// Therefore, extend the generic.Type with the stream close method.
|
||||
// This definition must be in a file that Genny doesn't process.
|
||||
type item interface {
|
||||
generic.Type
|
||||
closeForShutdown(error)
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue