mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-11-06 10:20:44 -05:00
20 lines
320 B
Go
20 lines
320 B
Go
package ws
|
|
|
|
import (
|
|
v2net "v2ray.com/core/common/net"
|
|
"v2ray.com/core/transport/internet"
|
|
)
|
|
|
|
func (v *ConnectionReuse) IsEnabled() bool {
|
|
if v == nil {
|
|
return false
|
|
}
|
|
return v.Enable
|
|
}
|
|
|
|
func init() {
|
|
internet.RegisterNetworkConfigCreator(v2net.Network_WebSocket, func() interface{} {
|
|
return new(Config)
|
|
})
|
|
}
|