2016-06-01 19:49:25 -04:00
|
|
|
// +build json
|
|
|
|
|
|
|
|
package transport
|
|
|
|
|
2016-06-11 07:51:02 -04:00
|
|
|
import (
|
|
|
|
"encoding/json"
|
|
|
|
|
2016-08-20 14:55:45 -04:00
|
|
|
"v2ray.com/core/transport/internet/kcp"
|
|
|
|
"v2ray.com/core/transport/internet/tcp"
|
|
|
|
"v2ray.com/core/transport/internet/ws"
|
2016-06-11 07:51:02 -04:00
|
|
|
)
|
2016-06-01 19:49:25 -04:00
|
|
|
|
|
|
|
func (this *Config) UnmarshalJSON(data []byte) error {
|
2016-06-02 14:52:52 -04:00
|
|
|
type JsonConfig struct {
|
2016-06-14 16:54:08 -04:00
|
|
|
TCPConfig *tcp.Config `json:"tcpSettings"`
|
2016-06-17 10:57:48 -04:00
|
|
|
KCPConfig kcp.Config `json:"kcpSettings"`
|
2016-08-13 09:39:34 -04:00
|
|
|
WSConfig *ws.Config `json:"wsSettings"`
|
2016-06-17 10:57:48 -04:00
|
|
|
}
|
|
|
|
jsonConfig := &JsonConfig{
|
|
|
|
KCPConfig: kcp.DefaultConfig(),
|
2016-06-10 20:05:29 -04:00
|
|
|
}
|
2016-06-02 14:52:52 -04:00
|
|
|
if err := json.Unmarshal(data, jsonConfig); err != nil {
|
2016-06-01 19:49:25 -04:00
|
|
|
return err
|
|
|
|
}
|
2016-06-14 16:54:08 -04:00
|
|
|
this.tcpConfig = jsonConfig.TCPConfig
|
2016-06-17 10:57:48 -04:00
|
|
|
this.kcpConfig = jsonConfig.KCPConfig
|
2016-08-13 09:39:34 -04:00
|
|
|
this.wsConfig = jsonConfig.WSConfig
|
2016-06-01 19:49:25 -04:00
|
|
|
return nil
|
|
|
|
}
|