1 Star 0 Fork 0

常岳/tool

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
internalIp.go 479 Bytes
一键复制 编辑 原始数据 按行查看 历史
常岳 提交于 2023-11-22 10:47 . update describe
package tool
import (
"errors"
"net"
"strings"
)
func GetInternalIP() (string, error) {
// 思路来自于Python版本的内网IP获取,其他版本不准确
conn, err := net.Dial("udp", "8.8.8.8:80")
if err != nil {
return "", errors.New("internal IP fetch failed, detail:" + err.Error())
}
defer conn.Close()
// udp 面向无连接,所以这些东西只在你本地捣鼓
res := conn.LocalAddr().String()
res = strings.Split(res, ":")[0]
return res, nil
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/cy422396350/tool.git
git@gitee.com:cy422396350/tool.git
cy422396350
tool
tool
master

搜索帮助