1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-06-28 18:25:23 +00:00

KCP: Fixed transport/config_json.go jsonConfig.KcpConfig, jsonConfig.KcpConfig.AdvancedConfig == nil

This commit is contained in:
Shelikhoo 2016-06-12 14:10:19 +08:00
parent e72a7cb96f
commit cbb183ec58
No known key found for this signature in database
GPG Key ID: 7791BDB0709ABD21

View File

@ -23,6 +23,10 @@ func (this *Config) UnmarshalJSON(data []byte) error {
}
this.ConnectionReuse = jsonConfig.ConnectionReuse
this.enableKcp = jsonConfig.EnableKcp
this.kcpConfig = kcpConfig
this.kcpConfig = jsonConfig.KcpConfig
if jsonConfig.KcpConfig.AdvancedConfig == nil {
jsonConfig.KcpConfig.AdvancedConfig = kcpv.DefaultAdvancedConfigs
}
return nil
}