v2ray-core/transport/config.go

13 lines
170 B
Go

package transport
type Config struct {
ConnectionReuse bool
}
func (this *Config) Apply() error {
if this.ConnectionReuse {
connectionReuse = true
}
return nil
}