1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-11-06 18:28:00 -05:00
v2fly/transport/config.go

15 lines
191 B
Go
Raw Normal View History

2016-06-01 19:49:25 -04:00
package transport
type StreamType int
2016-06-02 14:52:52 -04:00
type Config struct {
2016-06-01 19:49:25 -04:00
ConnectionReuse bool
}
2016-06-02 14:52:52 -04:00
func (this *Config) Apply() error {
if this.ConnectionReuse {
connectionReuse = true
}
return nil
2016-06-01 19:49:25 -04:00
}