fix: fix package name rules match

This commit is contained in:
Steve Johnson
2023-11-17 19:39:57 +08:00
parent b5a8f0fce1
commit aa3c1ac623
3 changed files with 23 additions and 7 deletions

View File

@@ -3,6 +3,7 @@ package process
import (
"errors"
"net/netip"
"github.com/metacubex/mihomo/constant"
)
var (
@@ -19,3 +20,7 @@ const (
func FindProcessName(network string, srcIP netip.Addr, srcPort int) (uint32, string, error) {
return findProcessName(network, srcIP, srcPort)
}
func FindPackageName(metadata *constant.Metadata) (string, error) {
return "", nil
}