mirror of
https://github.com/v2fly/v2ray-core.git
synced 2024-11-03 01:38:24 -04:00
14 lines
207 B
Go
14 lines
207 B
Go
package dokodemo
|
|
|
|
import (
|
|
v2net "v2ray.com/core/common/net"
|
|
)
|
|
|
|
func (this *Config) GetPredefinedAddress() v2net.Address {
|
|
addr := this.Address.AsAddress()
|
|
if addr == nil {
|
|
return nil
|
|
}
|
|
return addr
|
|
}
|