mirror of
https://github.com/MetaCubeX/mihomo.git
synced 2024-11-16 19:56:51 +08:00
11 lines
207 B
Go
11 lines
207 B
Go
|
// +build !darwin,!linux,!windows
|
||
|
// +build !freebsd !amd64
|
||
|
|
||
|
package process
|
||
|
|
||
|
import "net"
|
||
|
|
||
|
func findProcessName(network string, ip net.IP, srcPort int) (string, error) {
|
||
|
return "", ErrPlatformNotSupport
|
||
|
}
|