github.com/Asutorufa/yuhaiin@v0.3.6-0.20240502055049-7984da7023a0/pkg/net/netlink/netlink_others.go (about)

     1  //go:build !linux && !darwin && !windows
     2  // +build !linux,!darwin,!windows
     3  
     4  package netlink
     5  
     6  import (
     7  	"errors"
     8  	"net"
     9  )
    10  
    11  func FindProcessName(network string, ip net.IP, srcPort uint16, to net.IP, toPort uint16) (string, error) {
    12  	return "", errors.New("not implemented")
    13  }