| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 | package confimport (	"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}
 |