1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-09-15 00:18:16 -04:00
v2fly/transport/config.go
2016-06-02 20:52:52 +02:00

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
}