mirror of https://github.com/XTLS/Xray-core
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
305 B
15 lines
305 B
package dokodemo
|
|
|
|
import (
|
|
"github.com/xtls/xray-core/common/net"
|
|
)
|
|
|
|
// GetPredefinedAddress returns the defined address from proto config. Null if address is not valid.
|
|
func (v *Config) GetPredefinedAddress() net.Address {
|
|
addr := v.Address.AsAddress()
|
|
if addr == nil {
|
|
return nil
|
|
}
|
|
return addr
|
|
}
|