v2ray-core/transport/config.go

13 lines
170 B
Go
Raw Normal View History

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