v2ray-core/tools/conf/transport.go

51 lines
1.3 KiB
Go
Raw Normal View History

2016-10-17 12:35:13 +00:00
package conf
import (
"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 20:39:09 +00:00
func (v *TransportConfig) Build() (*transport.Config, error) {
2016-10-17 12:35:13 +00:00
config := new(transport.Config)
2016-11-27 20:39:09 +00:00
if v.TCPConfig != nil {
ts, err := v.TCPConfig.Build()
2016-10-17 12:35:13 +00:00
if err != nil {
2017-04-09 13:04:04 +00:00
return nil, newError("failed to build TCP config").Base(err).AtError()
2016-10-17 12:35:13 +00:00
}
config.TransportSettings = append(config.TransportSettings, &internet.TransportConfig{
Protocol: internet.TransportProtocol_TCP,
2016-10-17 12:35:13 +00:00
Settings: ts,
})
}
2016-11-27 20:39:09 +00:00
if v.KCPConfig != nil {
ts, err := v.KCPConfig.Build()
2016-10-17 12:35:13 +00:00
if err != nil {
2017-04-09 13:04:04 +00:00
return nil, newError("failed to build mKCP config").Base(err).AtError()
2016-10-17 12:35:13 +00:00
}
config.TransportSettings = append(config.TransportSettings, &internet.TransportConfig{
Protocol: internet.TransportProtocol_MKCP,
2016-10-17 12:35:13 +00:00
Settings: ts,
})
}
2016-11-27 20:39:09 +00:00
if v.WSConfig != nil {
ts, err := v.WSConfig.Build()
2016-10-17 12:35:13 +00:00
if err != nil {
2017-04-09 13:04:04 +00:00
return nil, newError("failed to build WebSocket config").Base(err)
2016-10-17 12:35:13 +00:00
}
config.TransportSettings = append(config.TransportSettings, &internet.TransportConfig{
Protocol: internet.TransportProtocol_WebSocket,
2016-10-17 12:35:13 +00:00
Settings: ts,
})
}
return config, nil
}