mirror of
https://gitclone.com/github.com/MetaCubeX/Clash.Meta
synced 2024-11-15 21:51:23 +08:00
3b277aa8ec
update gvisor Chore: use "-m mark --mark" instead of "-m owner --uid-owner"
69 lines
1.0 KiB
Go
69 lines
1.0 KiB
Go
package common
|
|
|
|
import (
|
|
"errors"
|
|
"net"
|
|
"strings"
|
|
|
|
C "github.com/Dreamacro/clash/constant"
|
|
)
|
|
|
|
var (
|
|
errPayload = errors.New("payload error")
|
|
|
|
noResolve = "no-resolve"
|
|
)
|
|
|
|
func HasNoResolve(params []string) bool {
|
|
for _, p := range params {
|
|
if p == noResolve {
|
|
return true
|
|
}
|
|
}
|
|
return false
|
|
}
|
|
|
|
func FindNetwork(params []string) C.NetWork {
|
|
for _, p := range params {
|
|
if p == "tcp" {
|
|
return C.TCP
|
|
} else if p == "udp" {
|
|
return C.UDP
|
|
}
|
|
}
|
|
return C.ALLNet
|
|
}
|
|
|
|
func FindSourceIPs(params []string) []*net.IPNet {
|
|
var ips []*net.IPNet
|
|
for _, p := range params {
|
|
if p == noResolve || len(p) < 7 {
|
|
continue
|
|
}
|
|
_, ipnet, err := net.ParseCIDR(p)
|
|
if err != nil {
|
|
continue
|
|
}
|
|
ips = append(ips, ipnet)
|
|
}
|
|
|
|
if len(ips) > 0 {
|
|
return ips
|
|
}
|
|
return nil
|
|
}
|
|
|
|
func FindProcessName(params []string) []string {
|
|
var processNames []string
|
|
for _, p := range params {
|
|
if strings.HasPrefix(p, "P:") {
|
|
processNames = append(processNames, strings.TrimPrefix(p, "P:"))
|
|
}
|
|
}
|
|
|
|
if len(processNames) > 0 {
|
|
return processNames
|
|
}
|
|
return nil
|
|
}
|