1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-09-20 19:06:09 -04:00
v2fly/transport/internet/websocket/config.go
2016-12-23 00:30:46 +01:00

20 lines
327 B
Go

package websocket
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)
})
}