| 1234567891011121314151617181920 |
- package transport
- import "github.com/v2ray/v2ray-core/transport/hub/kcpv"
- type Config struct {
- ConnectionReuse bool
- enableKcp bool
- kcpConfig *kcpv.Config
- }
- func (this *Config) Apply() error {
- if this.ConnectionReuse {
- connectionReuse = true
- }
- enableKcp = this.enableKcp
- if enableKcp {
- KcpConfig = this.kcpConfig
- }
- return nil
- }
|