1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-09-19 10:26:10 -04:00
v2fly/transport/internet/config.go

95 lines
2.3 KiB
Go
Raw Normal View History

2016-10-02 17:43:58 -04:00
package internet
2017-04-08 19:43:25 -04:00
import "v2ray.com/core/common/serial"
2016-10-02 17:43:58 -04:00
2016-10-18 09:31:48 -04:00
type ConfigCreator func() interface{}
2016-10-02 17:43:58 -04:00
var (
globalTransportConfigCreatorCache = make(map[TransportProtocol]ConfigCreator)
globalTransportSettings []*TransportConfig
2016-10-02 17:43:58 -04:00
)
func RegisterProtocolConfigCreator(protocol TransportProtocol, creator ConfigCreator) error {
2016-10-02 17:43:58 -04:00
// TODO: check duplicate
globalTransportConfigCreatorCache[protocol] = creator
2016-10-02 17:43:58 -04:00
return nil
}
func CreateTransportConfig(protocol TransportProtocol) (interface{}, error) {
creator, ok := globalTransportConfigCreatorCache[protocol]
2016-10-02 17:43:58 -04:00
if !ok {
2017-04-09 09:04:04 -04:00
return nil, newError("unknown transport protocol: ", protocol)
2016-10-02 17:43:58 -04:00
}
return creator(), nil
}
func (v *TransportConfig) GetTypedSettings() (interface{}, error) {
2016-11-27 15:39:09 -05:00
return v.Settings.GetInstance()
2016-10-02 17:43:58 -04:00
}
func (v *StreamConfig) GetEffectiveProtocol() TransportProtocol {
if v == nil {
return TransportProtocol_TCP
}
return v.Protocol
}
func (v *StreamConfig) GetEffectiveTransportSettings() (interface{}, error) {
protocol := v.GetEffectiveProtocol()
if v != nil {
for _, settings := range v.TransportSettings {
if settings.Protocol == protocol {
return settings.GetTypedSettings()
}
2016-10-02 17:43:58 -04:00
}
}
for _, settings := range globalTransportSettings {
if settings.Protocol == protocol {
2016-10-02 17:43:58 -04:00
return settings.GetTypedSettings()
}
}
return CreateTransportConfig(protocol)
2016-10-02 17:43:58 -04:00
}
func (c *StreamConfig) GetTransportSettingsFor(protocol TransportProtocol) (interface{}, error) {
if c != nil {
for _, settings := range c.TransportSettings {
if settings.Protocol == protocol {
return settings.GetTypedSettings()
}
}
}
for _, settings := range globalTransportSettings {
if settings.Protocol == protocol {
return settings.GetTypedSettings()
}
}
return CreateTransportConfig(protocol)
}
2016-11-27 15:39:09 -05:00
func (v *StreamConfig) GetEffectiveSecuritySettings() (interface{}, error) {
for _, settings := range v.SecuritySettings {
if settings.Type == v.SecurityType {
2016-10-16 08:22:21 -04:00
return settings.GetInstance()
2016-10-02 17:43:58 -04:00
}
}
2016-12-15 05:51:09 -05:00
return serial.GetInstance(v.SecurityType)
2016-10-16 08:22:21 -04:00
}
2016-11-27 15:39:09 -05:00
func (v *StreamConfig) HasSecuritySettings() bool {
return len(v.SecurityType) > 0
2016-10-02 17:43:58 -04:00
}
func ApplyGlobalTransportSettings(settings []*TransportConfig) error {
globalTransportSettings = settings
2016-10-02 17:43:58 -04:00
return nil
}
2016-11-10 17:41:28 -05:00
2016-11-27 15:39:09 -05:00
func (v *ProxyConfig) HasTag() bool {
return v != nil && len(v.Tag) > 0
2016-11-10 17:41:28 -05:00
}