mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-11-03 16:57:38 -05:00
18 lines
515 B
Go
18 lines
515 B
Go
package quic
|
|
|
|
import (
|
|
"v2ray.com/core/external/github.com/cheekybits/genny/generic"
|
|
|
|
"v2ray.com/core/external/github.com/lucas-clemente/quic-go/internal/protocol"
|
|
)
|
|
|
|
// 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)
|
|
}
|
|
|
|
const streamTypeGeneric protocol.StreamType = protocol.StreamTypeUni
|