sk-matrix-project/app/wails/pkg/system/network.go
2023-07-19 16:07:35 +08:00

14 lines
293 B
Go

package system
import "github.com/shirou/gopsutil/net"
func (i *InfoUtils) GetNetWorkConnection() []net.ConnectionStat {
info, _ := net.Connections("all")
return info
}
func (i *InfoUtils) GetNetworkCounter(all bool) []net.IOCountersStat {
info, _ := net.IOCounters(!all)
return info
}