chore: drop support of eBPF

This commit is contained in:
Larvan2
2024-08-16 14:15:36 +08:00
parent 6bf419c5fe
commit 0793998de8
32 changed files with 4 additions and 6304 deletions

View File

@@ -1,20 +0,0 @@
package constant
import (
"net/netip"
"github.com/metacubex/mihomo/transport/socks5"
)
const (
BpfFSPath = "/sys/fs/bpf/mihomo"
TcpAutoRedirPort = 't'<<8 | 'r'<<0
MihomoTrafficMark = 'c'<<24 | 'l'<<16 | 't'<<8 | 'm'<<0
)
type EBpf interface {
Start() error
Close()
Lookup(srcAddrPort netip.AddrPort) (socks5.Addr, error)
}