1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-09-05 19:44:32 -04:00
v2fly/transport/internet/kcp/config_json.go

52 lines
1.1 KiB
Go
Raw Normal View History

2016-06-14 16:54:08 -04:00
// +build json
package kcp
import (
"encoding/json"
2016-06-18 11:14:39 -04:00
2016-06-20 10:10:47 -04:00
"github.com/v2ray/v2ray-core/common"
2016-06-18 11:14:39 -04:00
"github.com/v2ray/v2ray-core/common/log"
2016-06-14 16:54:08 -04:00
)
func (this *Config) UnmarshalJSON(data []byte) error {
type JSONConfig struct {
2016-06-25 15:35:18 -04:00
Mtu *uint32 `json:"mtu"`
Tti *uint32 `json:"tti"`
UpCap *uint32 `json:"uplinkCapacity"`
DownCap *uint32 `json:"downlinkCapacity"`
Congestion *bool `json:"congestion"`
2016-06-14 17:25:06 -04:00
}
jsonConfig := new(JSONConfig)
2016-06-14 16:54:08 -04:00
if err := json.Unmarshal(data, &jsonConfig); err != nil {
return err
}
2016-06-14 17:25:06 -04:00
if jsonConfig.Mtu != nil {
2016-06-18 11:14:39 -04:00
mtu := *jsonConfig.Mtu
if mtu < 576 || mtu > 1460 {
log.Error("KCP|Config: Invalid MTU size: ", mtu)
2016-06-20 10:10:47 -04:00
return common.ErrBadConfiguration
2016-06-18 11:14:39 -04:00
}
2016-06-20 10:10:47 -04:00
this.Mtu = mtu
}
if jsonConfig.Tti != nil {
tti := *jsonConfig.Tti
if tti < 10 || tti > 100 {
log.Error("KCP|Config: Invalid TTI: ", tti)
return common.ErrBadConfiguration
}
this.Tti = tti
}
if jsonConfig.UpCap != nil {
2016-07-04 07:31:21 -04:00
this.UplinkCapacity = *jsonConfig.UpCap
2016-06-20 10:10:47 -04:00
}
if jsonConfig.DownCap != nil {
2016-07-04 07:31:21 -04:00
this.DownlinkCapacity = *jsonConfig.DownCap
2016-06-20 10:10:47 -04:00
}
if jsonConfig.Congestion != nil {
this.Congestion = *jsonConfig.Congestion
2016-06-14 17:25:06 -04:00
}
2016-06-14 16:54:08 -04:00
return nil
}