v2ray-core/transport/config.go

15 lines
191 B
Go

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