Files
tun2socks/common/lsof/lsof_other.go
2019-07-16 11:37:52 +08:00

12 lines
191 B
Go

// +build ios android
package lsof
import (
"errors"
)
func GetCommandNameBySocket(network string, addr string, port uint16) (string, error) {
return "", errors.New("not implemented")
}