github.com/chwjbn/xclash@v0.2.0/component/process/process_other.go (about)

     1  //go:build !darwin && !linux && !windows && (!freebsd || !amd64)
     2  // +build !darwin
     3  // +build !linux
     4  // +build !windows
     5  // +build !freebsd !amd64
     6  
     7  package process
     8  
     9  import "net"
    10  
    11  func findProcessName(network string, ip net.IP, srcPort int) (string, error) {
    12  	return "", ErrPlatformNotSupport
    13  }