1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2025-02-20 23:47:21 -05:00
v2fly/transport/config.go

13 lines
170 B
Go
Raw Permalink Normal View History

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