mirror of https://github.com/v2ray/v2ray-core
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.
51 lines
1.3 KiB
51 lines
1.3 KiB
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"`
|
|
}
|
|
|
|
func (v *TransportConfig) Build() (*transport.Config, error) {
|
|
config := new(transport.Config)
|
|
|
|
if v.TCPConfig != nil {
|
|
ts, err := v.TCPConfig.Build()
|
|
if err != nil {
|
|
return nil, newError("failed to build TCP config").Base(err).AtError()
|
|
}
|
|
config.TransportSettings = append(config.TransportSettings, &internet.TransportConfig{
|
|
Protocol: internet.TransportProtocol_TCP,
|
|
Settings: ts,
|
|
})
|
|
}
|
|
|
|
if v.KCPConfig != nil {
|
|
ts, err := v.KCPConfig.Build()
|
|
if err != nil {
|
|
return nil, newError("failed to build mKCP config").Base(err).AtError()
|
|
}
|
|
config.TransportSettings = append(config.TransportSettings, &internet.TransportConfig{
|
|
Protocol: internet.TransportProtocol_MKCP,
|
|
Settings: ts,
|
|
})
|
|
}
|
|
|
|
if v.WSConfig != nil {
|
|
ts, err := v.WSConfig.Build()
|
|
if err != nil {
|
|
return nil, newError("failed to build WebSocket config").Base(err)
|
|
}
|
|
config.TransportSettings = append(config.TransportSettings, &internet.TransportConfig{
|
|
Protocol: internet.TransportProtocol_WebSocket,
|
|
Settings: ts,
|
|
})
|
|
}
|
|
return config, nil
|
|
}
|