1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-07-22 05:04:21 -04:00
v2fly/transport/internet/ws/config.go
2016-10-17 14:35:13 +02:00

20 lines
329 B
Go

package ws
import (
v2net "v2ray.com/core/common/net"
"v2ray.com/core/transport/internet"
)
func (this *ConnectionReuse) IsEnabled() bool {
if this == nil {
return false
}
return this.Enable
}
func init() {
internet.RegisterNetworkConfigCreator(v2net.Network_WebSocket, func() interface{} {
return new(Config)
})
}