1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-06-29 02:35:23 +00:00

default send through value

This commit is contained in:
Darien Raymond 2016-10-18 00:02:41 +02:00
parent 4a67587873
commit ad59e56925
No known key found for this signature in database
GPG Key ID: 7251FFA14BB18169
2 changed files with 8 additions and 1 deletions

View File

@ -46,3 +46,10 @@ func (this *OutboundConnectionConfig) GetTypedSettings() (interface{}, error) {
} }
return this.GetSettings().GetInstance() return this.GetSettings().GetInstance()
} }
func (this *OutboundConnectionConfig) GetSendThroughValue() v2net.Address {
if this.GetSendThrough() == nil {
return v2net.AnyIP
}
return this.SendThrough.AsAddress()
}

View File

@ -111,7 +111,7 @@ func NewPoint(pConfig *Config) (*Point, error) {
outboundHandler, err := proxyregistry.CreateOutboundHandler( outboundHandler, err := proxyregistry.CreateOutboundHandler(
outbound.Settings.Type, vpoint.space, outboundSettings, &proxy.OutboundHandlerMeta{ outbound.Settings.Type, vpoint.space, outboundSettings, &proxy.OutboundHandlerMeta{
Tag: outbound.Tag, Tag: outbound.Tag,
Address: outbound.SendThrough.AsAddress(), Address: outbound.GetSendThroughValue(),
StreamSettings: outbound.StreamSettings, StreamSettings: outbound.StreamSettings,
}) })
if err != nil { if err != nil {