1 Star 0 Fork 0

J-star/BaiduPCS-Go

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
addr.go 492 Bytes
一键复制 编辑 原始数据 按行查看 历史
konica 提交于 7年前 . 重新命名
package pcsutil
import (
"net"
)
// ListAddresses 列出本地可用的 IP 地址
func ListAddresses() (addresses []string) {
ifaces, _ := net.Interfaces()
addresses = make([]string, 0, len(ifaces))
for k := range ifaces[:] {
ifAddrs, _ := ifaces[k].Addrs()
for l := range ifAddrs[:] {
switch v := ifAddrs[l].(type) {
case *net.IPNet:
addresses = append(addresses, v.IP.String())
case *net.IPAddr:
addresses = append(addresses, v.IP.String())
}
}
}
return
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/j-star/BaiduPCS-Go.git
git@gitee.com:j-star/BaiduPCS-Go.git
j-star
BaiduPCS-Go
BaiduPCS-Go
v3.3.3

搜索帮助