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.
27 lines
478 B
27 lines
478 B
1 year ago
|
package network
|
||
|
|
||
|
import (
|
||
|
"github.com/OpenIMSDK/Open-IM-Server/pkg/common/constant"
|
||
|
utils "github.com/OpenIMSDK/open_utils"
|
||
|
)
|
||
|
|
||
|
func GetRpcRegisterIP(configIP string) (string, error) {
|
||
|
registerIP := configIP
|
||
|
if registerIP == "" {
|
||
|
ip, err := utils.GetLocalIP()
|
||
|
if err != nil {
|
||
|
return "", err
|
||
|
}
|
||
|
registerIP = ip
|
||
|
}
|
||
|
return registerIP, nil
|
||
|
}
|
||
|
|
||
|
func GetListenIP(configIP string) string {
|
||
|
if configIP == "" {
|
||
|
return constant.LocalHost
|
||
|
} else {
|
||
|
return configIP
|
||
|
}
|
||
|
}
|