1 Star 0 Fork 1

ttpc2008 / BaiduPCS-Go

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
addr.go 492 Bytes
一键复制 编辑 原始数据 按行查看 历史
konica 提交于 2018-01-28 12:32 . 重新命名
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
}
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/ttpc2008/BaiduPCS-Go.git
git@gitee.com:ttpc2008/BaiduPCS-Go.git
ttpc2008
BaiduPCS-Go
BaiduPCS-Go
v3.2.2

搜索帮助

344bd9b3 5694891 D2dac590 5694891