mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-12-22 10:08:15 -05:00
Fix: check jsonConfig.KcpConfig
This commit is contained in:
parent
bcf87d1592
commit
de4b4516ee
@ -5,6 +5,7 @@ package transport
|
|||||||
import (
|
import (
|
||||||
"encoding/json"
|
"encoding/json"
|
||||||
|
|
||||||
|
"github.com/v2ray/v2ray-core/common/log"
|
||||||
"github.com/v2ray/v2ray-core/transport/hub/kcpv"
|
"github.com/v2ray/v2ray-core/transport/hub/kcpv"
|
||||||
)
|
)
|
||||||
|
|
||||||
@ -23,9 +24,15 @@ 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 = jsonConfig.KcpConfig
|
if jsonConfig.KcpConfig != nil {
|
||||||
if jsonConfig.KcpConfig.AdvancedConfigs == nil {
|
this.kcpConfig = jsonConfig.KcpConfig
|
||||||
jsonConfig.KcpConfig.AdvancedConfigs = kcpv.DefaultAdvancedConfigs
|
if jsonConfig.KcpConfig.AdvancedConfigs == nil {
|
||||||
|
jsonConfig.KcpConfig.AdvancedConfigs = kcpv.DefaultAdvancedConfigs
|
||||||
|
}
|
||||||
|
} else {
|
||||||
|
if jsonConfig.EnableKcp {
|
||||||
|
log.Error("transport: You have enabled KCP but no configure is given")
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return nil
|
return nil
|
||||||
|
Loading…
Reference in New Issue
Block a user