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-09-30 16:53:40 +02:00

18 lines
226 B
Go

package ws
type Config struct {
ConnectionReuse bool
Path string
}
func (this *Config) Apply() {
effectiveConfig = this
}
var (
effectiveConfig = &Config{
ConnectionReuse: true,
Path: "",
}
)