1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-07-05 05:25:23 +00:00
v2fly/transport/config.go

23 lines
422 B
Go
Raw Normal View History

2016-06-01 23:49:25 +00:00
package transport
2016-06-11 11:51:02 +00:00
import "github.com/v2ray/v2ray-core/transport/hub/kcpv"
2016-06-11 11:29:33 +00:00
// Config for V2Ray transport layer.
2016-06-02 18:52:52 +00:00
type Config struct {
2016-06-01 23:49:25 +00:00
ConnectionReuse bool
2016-06-11 11:51:02 +00:00
enableKcp bool
kcpConfig *kcpv.Config
2016-06-01 23:49:25 +00:00
}
2016-06-11 11:29:33 +00:00
// Apply applies this Config.
2016-06-02 18:52:52 +00:00
func (this *Config) Apply() error {
if this.ConnectionReuse {
connectionReuse = true
}
2016-06-11 11:51:02 +00:00
enableKcp = this.enableKcp
if enableKcp {
KcpConfig = this.kcpConfig
}
2016-06-02 18:52:52 +00:00
return nil
2016-06-01 23:49:25 +00:00
}