Support stats in Windows OS

This commit is contained in:
Alireza Ahmadi
2023-03-01 21:50:23 +01:00
parent e13540901f
commit 52d3956203

24
util/sys/sys_windows.go Normal file
View File

@@ -0,0 +1,24 @@
//go:build windows
// +build windows
package sys
import (
"github.com/shirou/gopsutil/v3/net"
)
func GetTCPCount() (int, error) {
stats, err := net.Connections("tcp")
if err != nil {
return 0, err
}
return len(stats), nil
}
func GetUDPCount() (int, error) {
stats, err := net.Connections("udp")
if err != nil {
return 0, err
}
return len(stats), nil
}