1 Star 1 Fork 0

妙音 / oils

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
ip.go 263 Bytes
一键复制 编辑 原始数据 按行查看 历史
妙音 提交于 2021-11-13 15:34 . feat: feat: u64 id 根据IP唯一
package nets
import (
"net"
)
// GetIP 获取IP地址.
func GetIP() []byte {
conn, err := net.Dial("udp", "8.8.8.8:53")
if err == nil {
localAddr, ok := conn.LocalAddr().(*net.UDPAddr)
if ok {
return localAddr.IP
}
}
return []byte{0, 0, 0, 0}
}
1
https://gitee.com/xuender/oils.git
git@gitee.com:xuender/oils.git
xuender
oils
oils
v1.1.23

搜索帮助

53164aa7 5694891 3bd8fe86 5694891