95 lines
2.3 KiB
Go
Raw Normal View History

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