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
294 B

package dokodemo
import (
8 years ago
"v2ray.com/core/common/net"
)
// GetPredefinedAddress returns the defined address from proto config. Null if address is not valid.
8 years ago
func (v *Config) GetPredefinedAddress() net.Address {
8 years ago
addr := v.Address.AsAddress()
8 years ago
if addr == nil {
return nil
}
return addr
}