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

23 lines
415 B
Go

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