v2ray-core/transport/config.go

15 lines
237 B
Go

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