You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
|
// +build json
|
|
|
|
|
|
|
|
package transport
|
|
|
|
|
|
|
|
import (
|
|
|
|
"encoding/json"
|
|
|
|
|
|
|
|
"github.com/v2ray/v2ray-core/transport/hub/kcpv"
|
|
|
|
)
|
|
|
|
|
|
|
|
func (this *Config) UnmarshalJSON(data []byte) error {
|
|
|
|
type JsonConfig struct {
|
|
|
|
ConnectionReuse bool `json:"connectionReuse"`
|
|
|
|
EnableKcp bool `json:"EnableKCP,omitempty"`
|
|
|
|
KcpConfig *kcpv.Config `json:"KcpConfig,omitempty"`
|
|
|
|
}
|
|
|
|
jsonConfig := &JsonConfig{
|
|
|
|
ConnectionReuse: true,
|
|
|
|
EnableKcp: false,
|
|
|
|
}
|
|
|
|
if err := json.Unmarshal(data, jsonConfig); err != nil {
|
|
|
|
return err
|
|
|
|
}
|
|
|
|
this.ConnectionReuse = jsonConfig.ConnectionReuse
|
|
|
|
this.enableKcp = jsonConfig.EnableKcp
|
|
|
|
this.kcpConfig = jsonConfig.KcpConfig
|
|
|
|
if jsonConfig.KcpConfig.AdvancedConfigs == nil {
|
|
|
|
jsonConfig.KcpConfig.AdvancedConfigs = kcpv.DefaultAdvancedConfigs
|
|
|
|
}
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|