mirror of https://github.com/v2ray/v2ray-core
KCP: Fixed transport/config_json.go jsonConfig.KcpConfig, jsonConfig.KcpConfig.AdvancedConfig == nil
parent
e72a7cb96f
commit
cbb183ec58
|
@ -23,6 +23,10 @@ func (this *Config) UnmarshalJSON(data []byte) error {
|
||||||
}
|
}
|
||||||
this.ConnectionReuse = jsonConfig.ConnectionReuse
|
this.ConnectionReuse = jsonConfig.ConnectionReuse
|
||||||
this.enableKcp = jsonConfig.EnableKcp
|
this.enableKcp = jsonConfig.EnableKcp
|
||||||
this.kcpConfig = kcpConfig
|
this.kcpConfig = jsonConfig.KcpConfig
|
||||||
|
if jsonConfig.KcpConfig.AdvancedConfig == nil {
|
||||||
|
jsonConfig.KcpConfig.AdvancedConfig = kcpv.DefaultAdvancedConfigs
|
||||||
|
}
|
||||||
|
|
||||||
return nil
|
return nil
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue