mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-11-07 10:47:48 -05:00
23 lines
415 B
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: "",
|
|
}
|
|
)
|