mirror of
https://github.com/xjasonlyu/tun2socks.git
synced 2025-10-08 10:10:12 +08:00
12 lines
191 B
Go
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")
|
|
}
|