1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-09-29 07:16:29 -04:00
v2fly/tools/conf/transport.go

52 lines
1.4 KiB
Go
Raw Normal View History

2016-10-17 08:35:13 -04:00
package conf
import (
2016-12-04 03:10:47 -05:00
"v2ray.com/core/common/errors"
2016-10-17 08:35:13 -04:00
"v2ray.com/core/transport"
"v2ray.com/core/transport/internet"
)
type TransportConfig struct {
TCPConfig *TCPConfig `json:"tcpSettings"`
KCPConfig *KCPConfig `json:"kcpSettings"`
WSConfig *WebSocketConfig `json:"wsSettings"`
}
2016-11-27 15:39:09 -05:00
func (v *TransportConfig) Build() (*transport.Config, error) {
2016-10-17 08:35:13 -04:00
config := new(transport.Config)
2016-11-27 15:39:09 -05:00
if v.TCPConfig != nil {
ts, err := v.TCPConfig.Build()
2016-10-17 08:35:13 -04:00
if err != nil {
2017-02-02 08:42:31 -05:00
return nil, errors.Base(err).Message("Config: Failed to build TCP config.")
2016-10-17 08:35:13 -04:00
}
config.TransportSettings = append(config.TransportSettings, &internet.TransportConfig{
Protocol: internet.TransportProtocol_TCP,
2016-10-17 08:35:13 -04:00
Settings: ts,
})
}
2016-11-27 15:39:09 -05:00
if v.KCPConfig != nil {
ts, err := v.KCPConfig.Build()
2016-10-17 08:35:13 -04:00
if err != nil {
2017-02-02 08:42:31 -05:00
return nil, errors.Base(err).Message("Config: Failed to build mKCP config.")
2016-10-17 08:35:13 -04:00
}
config.TransportSettings = append(config.TransportSettings, &internet.TransportConfig{
Protocol: internet.TransportProtocol_MKCP,
2016-10-17 08:35:13 -04:00
Settings: ts,
})
}
2016-11-27 15:39:09 -05:00
if v.WSConfig != nil {
ts, err := v.WSConfig.Build()
2016-10-17 08:35:13 -04:00
if err != nil {
2017-02-02 08:42:31 -05:00
return nil, errors.Base(err).Message("Config: Failed to build WebSocket config.")
2016-10-17 08:35:13 -04:00
}
config.TransportSettings = append(config.TransportSettings, &internet.TransportConfig{
Protocol: internet.TransportProtocol_WebSocket,
2016-10-17 08:35:13 -04:00
Settings: ts,
})
}
return config, nil
}