1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-07-21 12:44:17 -04:00
v2fly/transport/internet/ws/config.go
2016-08-13 21:44:36 +08:00

22 lines
321 B
Go

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