1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-09-28 14:56:33 -04:00
v2fly/transport/internet/websocket/config.go
2017-01-01 21:19:12 +01:00

20 lines
370 B
Go

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