[Fixed] Fixed clash process name is Clash.Meta
This commit is contained in:
parent
b79eb1cea9
commit
a8dafd434e
3 changed files with 20 additions and 17 deletions
|
@ -28,7 +28,7 @@ func NewInner(conn net.Conn, dst string, host string) *context.ConnContext {
|
|||
metadata.DNSMode = C.DNSMapping
|
||||
metadata.Host = host
|
||||
metadata.AddrType = C.AtypDomainName
|
||||
|
||||
metadata.Process = C.ClashName
|
||||
if ip, port, err := parseAddr(dst); err == nil {
|
||||
metadata.DstPort = port
|
||||
if host == "" {
|
||||
|
|
|
@ -5,4 +5,5 @@ var (
|
|||
Version = "1.9.0"
|
||||
BuildTime = "unknown time"
|
||||
AutoIptables string
|
||||
ClashName = "Clash.Meta"
|
||||
)
|
||||
|
|
|
@ -35,6 +35,7 @@ func (ps *Process) Match(metadata *C.Metadata) bool {
|
|||
}
|
||||
|
||||
key := fmt.Sprintf("%s:%s:%s", metadata.NetWork.String(), metadata.SrcIP.String(), metadata.SrcPort)
|
||||
if strings.TrimSpace(metadata.Process) == "" {
|
||||
cached, hit := processCache.Get(key)
|
||||
if !hit {
|
||||
srcPort, err := strconv.Atoi(metadata.SrcPort)
|
||||
|
@ -54,6 +55,7 @@ func (ps *Process) Match(metadata *C.Metadata) bool {
|
|||
}
|
||||
|
||||
metadata.Process = cached.(string)
|
||||
}
|
||||
|
||||
return strings.EqualFold(metadata.Process, ps.process)
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue